kernel: Fix reported address space limit to be in keeping with ntdll.

This commit is contained in:
qingdoa daoo 2006-06-17 14:10:07 +08:00 committed by Alexandre Julliard
parent 698a8a0b86
commit 43fa835e0e

View file

@ -333,7 +333,7 @@ VOID WINAPI GetSystemInfo(
/* FIXME: the two entries below should be computed somehow... */
cachedsi.lpMinimumApplicationAddress = (void *)0x00010000;
cachedsi.lpMaximumApplicationAddress = (void *)0x7FFFFFFF;
cachedsi.lpMaximumApplicationAddress = (void *)0x7FFEFFFF;
cachedsi.dwActiveProcessorMask = 1;
cachedsi.dwNumberOfProcessors = 1;
cachedsi.dwProcessorType = PROCESSOR_INTEL_PENTIUM;