kernel: Fix reported address space limit to be in keeping with ntdll.
This commit is contained in:
parent
698a8a0b86
commit
43fa835e0e
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue