|
From: Wesley T. <we...@ml...> - 2006-05-25 20:54:31
|
This method has a new name
----------------------------------------------------------------------
U mlton/branches/on-20050822-x86_64-branch/runtime/platform/mingw.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-26 03:28:08 UTC (rev 4608)
+++ mlton/branches/on-20050822-x86_64-branch/runtime/platform/mingw.c 2006-05-26 03:54:30 UTC (rev 4609)
@@ -33,7 +33,7 @@
return (HANDLE)t;
}
-int getpagesize (void) {
+size_t GC_pageSize (void) {
SYSTEM_INFO sysinfo;
GetSystemInfo(&sysinfo);
return sysinfo.dwPageSize;
|