getpagesize.c

Go to the documentation of this file.
00001 /* @(#)root/clib:$Id: getpagesize.c 20882 2007-11-19 11:31:26Z rdm $ */
00002 /* Author: */
00003 #ifdef WIN32
00004 #include <windows.h>
00005 #include "mmalloc.h"
00006 
00007 int getpagesize()
00008 {
00009   SYSTEM_INFO siSysInfo;   /* struct for hardware information */
00010   /* Copy the hardware information to the SYSTEM_INFO structure. */
00011 
00012   GetSystemInfo(&siSysInfo);
00013   return  siSysInfo.dwPageSize;
00014 }
00015 
00016 #else
00017 
00018 #ifndef __GNUC__
00019 /* Prevent "empty translation unit" warnings. */
00020 #include <stdio.h>
00021 #endif
00022 
00023 #endif

Generated on Tue Jul 5 14:11:25 2011 for ROOT_528-00b_version by  doxygen 1.5.1