[MLton-commit] r4486
Stephen Weeks
MLton@mlton.org
Sun, 7 May 2006 22:06:17 -0700
Removed fixedGetrusage.
----------------------------------------------------------------------
U mlton/branches/on-20050822-x86_64-branch/runtime/platform/darwin.c
U mlton/branches/on-20050822-x86_64-branch/runtime/platform/freebsd.c
D mlton/branches/on-20050822-x86_64-branch/runtime/platform/getrusage.c
U mlton/branches/on-20050822-x86_64-branch/runtime/platform/hpux.c
U mlton/branches/on-20050822-x86_64-branch/runtime/platform/mingw.c
U mlton/branches/on-20050822-x86_64-branch/runtime/platform/netbsd.c
U mlton/branches/on-20050822-x86_64-branch/runtime/platform/openbsd.c
U mlton/branches/on-20050822-x86_64-branch/runtime/platform/solaris.c
----------------------------------------------------------------------
Modified: mlton/branches/on-20050822-x86_64-branch/runtime/platform/darwin.c
===================================================================
--- mlton/branches/on-20050822-x86_64-branch/runtime/platform/darwin.c 2006-05-08 02:05:29 UTC (rev 4485)
+++ mlton/branches/on-20050822-x86_64-branch/runtime/platform/darwin.c 2006-05-08 05:06:16 UTC (rev 4486)
@@ -4,7 +4,6 @@
#include "platform.h"
-#include "getrusage.c"
#include "mkdir2.c"
#include "ssmmap.c"
#include "use-mmap.c"
Modified: mlton/branches/on-20050822-x86_64-branch/runtime/platform/freebsd.c
===================================================================
--- mlton/branches/on-20050822-x86_64-branch/runtime/platform/freebsd.c 2006-05-08 02:05:29 UTC (rev 4485)
+++ mlton/branches/on-20050822-x86_64-branch/runtime/platform/freebsd.c 2006-05-08 05:06:16 UTC (rev 4486)
@@ -1,6 +1,5 @@
#include "platform.h"
-#include "getrusage.c"
#include "getText.c"
#include "mkdir2.c"
#include "ssmmap.c"
Deleted: mlton/branches/on-20050822-x86_64-branch/runtime/platform/getrusage.c
===================================================================
--- mlton/branches/on-20050822-x86_64-branch/runtime/platform/getrusage.c 2006-05-08 02:05:29 UTC (rev 4485)
+++ mlton/branches/on-20050822-x86_64-branch/runtime/platform/getrusage.c 2006-05-08 05:06:16 UTC (rev 4486)
@@ -1,3 +0,0 @@
-int fixedGetrusage (int who, struct rusage *rup) {
- return getrusage (who, rup);
-}
Modified: mlton/branches/on-20050822-x86_64-branch/runtime/platform/hpux.c
===================================================================
--- mlton/branches/on-20050822-x86_64-branch/runtime/platform/hpux.c 2006-05-08 02:05:29 UTC (rev 4485)
+++ mlton/branches/on-20050822-x86_64-branch/runtime/platform/hpux.c 2006-05-08 05:06:16 UTC (rev 4486)
@@ -8,7 +8,6 @@
#include <sys/newsig.h>
#include "ssmmap.c"
-#include "getrusage.c"
#include "use-mmap.c"
#include "mkdir2.c"
#include "setenv.putenv.c"
Modified: mlton/branches/on-20050822-x86_64-branch/runtime/platform/mingw.c
===================================================================
--- mlton/branches/on-20050822-x86_64-branch/runtime/platform/mingw.c 2006-05-08 02:05:29 UTC (rev 4485)
+++ mlton/branches/on-20050822-x86_64-branch/runtime/platform/mingw.c 2006-05-08 05:06:16 UTC (rev 4486)
@@ -145,7 +145,7 @@
* MLton.
*/
-int fixedGetrusage (int who, struct rusage *usage) {
+int getrusage (int who, struct rusage *usage) {
usage->ru_utime.tv_sec = 0;
usage->ru_utime.tv_usec = 0;
usage->ru_stime.tv_sec = 0;
Modified: mlton/branches/on-20050822-x86_64-branch/runtime/platform/netbsd.c
===================================================================
--- mlton/branches/on-20050822-x86_64-branch/runtime/platform/netbsd.c 2006-05-08 02:05:29 UTC (rev 4485)
+++ mlton/branches/on-20050822-x86_64-branch/runtime/platform/netbsd.c 2006-05-08 05:06:16 UTC (rev 4486)
@@ -1,6 +1,5 @@
#include "platform.h"
-#include "getrusage.c"
#include "getText.c"
#include "mkdir2.c"
#include "showMem.linux.c"
Modified: mlton/branches/on-20050822-x86_64-branch/runtime/platform/openbsd.c
===================================================================
--- mlton/branches/on-20050822-x86_64-branch/runtime/platform/openbsd.c 2006-05-08 02:05:29 UTC (rev 4485)
+++ mlton/branches/on-20050822-x86_64-branch/runtime/platform/openbsd.c 2006-05-08 05:06:16 UTC (rev 4486)
@@ -1,6 +1,5 @@
#include "platform.h"
-#include "getrusage.c"
#include "getText.c"
#include "mkdir2.c"
#include "showMem.linux.c"
Modified: mlton/branches/on-20050822-x86_64-branch/runtime/platform/solaris.c
===================================================================
--- mlton/branches/on-20050822-x86_64-branch/runtime/platform/solaris.c 2006-05-08 02:05:29 UTC (rev 4485)
+++ mlton/branches/on-20050822-x86_64-branch/runtime/platform/solaris.c 2006-05-08 05:06:16 UTC (rev 4486)
@@ -2,7 +2,6 @@
#include <ieeefp.h>
-#include "getrusage.c"
#include "getText.c"
#include "mkdir2.c"
#include "mmap.c"