Added comment about why changing ADDRESS_SPACE_LIMIT is wrong.

This commit is contained in:
Alexandre Julliard 2003-05-06 18:52:43 +00:00
parent ebe67a2864
commit 54f59e5005
1 changed files with 4 additions and 0 deletions

View File

@ -102,6 +102,10 @@ static CRITICAL_SECTION csVirtual = CRITICAL_SECTION_INIT("csVirtual");
# define page_mask 0xfff
# define page_shift 12
# define page_size 0x1000
/* Note: ADDRESS_SPACE_LIMIT is a Windows limit, you cannot change it.
* If you are on Solaris you need to find a way to avoid having the system
* allocate things above 0xc000000. Don't touch that define.
*/
# define ADDRESS_SPACE_LIMIT ((void *)0xc0000000) /* top of the user address space */
#else
static UINT page_shift;