/* * system.c: System information * * Author: * Dick Porter (dick@ximian.com) * * (C) 2002 Ximian, Inc. */ #include #include #include #include #include #include "mono/io-layer/wapi.h" void GetSystemInfo(WapiSystemInfo *info) { info->dwPageSize=getpagesize(); /* Fill in the rest of this junk. Maybe with libgtop */ info->dwNumberOfProcessors=1; }