[MLton-commit] r5817

Matthew Fluet fluet at mlton.org
Fri Aug 3 09:37:41 PDT 2007


Catching up on changes from 'size_t GC_totalRam()' to 'uintmax_t GC_physMem()'
----------------------------------------------------------------------

U   mlton/trunk/runtime/platform/sysctl.c

----------------------------------------------------------------------

Modified: mlton/trunk/runtime/platform/sysctl.c
===================================================================
--- mlton/trunk/runtime/platform/sysctl.c	2007-08-03 02:39:08 UTC (rev 5816)
+++ mlton/trunk/runtime/platform/sysctl.c	2007-08-03 16:37:40 UTC (rev 5817)
@@ -27,7 +27,7 @@
   }
 }
 
-size_t GC_totalRam (void) {
+uintmax_t GC_physMem (void) {
   size_t len;
   int mib[2];
 
@@ -60,6 +60,6 @@
       diee ("sysctl failed");
     return (uintmax_t)physMem;
   } else {
-    die ("GC_totalRam");
+    die ("GC_physMem");
   }
 }




More information about the MLton-commit mailing list