Add return traces to GlobalMemoryStatus, GetSystemInfo and fixme in

GetSystemInfo.
This commit is contained in:
Andreas Mohr 2002-04-02 19:40:49 +00:00 committed by Alexandre Julliard
parent 03f4e22327
commit cacbe216eb
2 changed files with 13 additions and 2 deletions

View File

@ -1600,6 +1600,12 @@ VOID WINAPI GlobalMemoryStatus(
if(lpmem->dwAvailPageFile==0)
lpmem->dwAvailPageFile++;
TRACE("<-- LPMEMORYSTATUS: dwLength %ld, dwMemoryLoad %ld, dwTotalPhys %ld, dwAvailPhys %ld,"
" dwTotalPageFile %ld, dwAvailPageFile %ld, dwTotalVirtual %ld, dwAvailVirtual %ld\n",
lpmem->dwLength, lpmem->dwMemoryLoad, lpmem->dwTotalPhys, lpmem->dwAvailPhys,
lpmem->dwTotalPageFile, lpmem->dwAvailPageFile, lpmem->dwTotalVirtual,
lpmem->dwAvailVirtual);
}
/***********************************************************************

View File

@ -237,8 +237,7 @@ VOID WINAPI GetSystemInfo(
}
memcpy(si,&cachedsi,sizeof(*si));
#else /* linux */
/* FIXME: how do we do this on other systems? */
FIXME("not yet supported on this system\n");
RegCreateKeyA(hkey,"0",&xhkey);
RegSetValueExA(xhkey,"Identifier",0,REG_SZ,"CPU 386",strlen("CPU 386"));
#endif /* !linux */
@ -246,6 +245,12 @@ VOID WINAPI GetSystemInfo(
RegCloseKey(xhkey);
if (hkey)
RegCloseKey(hkey);
TRACE("<- CPU arch %d, res'd %d, pagesize %ld, minappaddr %p, maxappaddr %p,"
" act.cpumask %08lx, numcpus %ld, CPU type %ld, allocgran. %ld, CPU level %d, CPU rev %d\n",
si->u.s.wProcessorArchitecture, si->u.s.wReserved, si->dwPageSize,
si->lpMinimumApplicationAddress, si->lpMaximumApplicationAddress,
si->dwActiveProcessorMask, si->dwNumberOfProcessors, si->dwProcessorType,
si->dwAllocationGranularity, si->wProcessorLevel, si->wProcessorRevision);
}