55e3cdd08dbf07b21c1b9f462d90e7ced7719c26
[mono.git] / mono / io-layer / system.c
1 #include <config.h>
2 #include <glib.h>
3 #include <sys/time.h>
4 #include <stdlib.h>
5 #include <unistd.h>
6
7 #include "mono/io-layer/wapi.h"
8
9 void GetSystemInfo(WapiSystemInfo *info)
10 {
11         info->dwPageSize=getpagesize();
12
13         /* Fill in the rest of this junk. Maybe with libgtop */
14         info->dwNumberOfProcessors=1;
15 }
16
17