Commit 43fa835e authored by qingdoa daoo's avatar qingdoa daoo Committed by Alexandre Julliard

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

parent 698a8a0b
...@@ -333,7 +333,7 @@ VOID WINAPI GetSystemInfo( ...@@ -333,7 +333,7 @@ VOID WINAPI GetSystemInfo(
/* FIXME: the two entries below should be computed somehow... */ /* FIXME: the two entries below should be computed somehow... */
cachedsi.lpMinimumApplicationAddress = (void *)0x00010000; cachedsi.lpMinimumApplicationAddress = (void *)0x00010000;
cachedsi.lpMaximumApplicationAddress = (void *)0x7FFFFFFF; cachedsi.lpMaximumApplicationAddress = (void *)0x7FFEFFFF;
cachedsi.dwActiveProcessorMask = 1; cachedsi.dwActiveProcessorMask = 1;
cachedsi.dwNumberOfProcessors = 1; cachedsi.dwNumberOfProcessors = 1;
cachedsi.dwProcessorType = PROCESSOR_INTEL_PENTIUM; cachedsi.dwProcessorType = PROCESSOR_INTEL_PENTIUM;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment