Commit bf1606cf authored by Alexandre Julliard's avatar Alexandre Julliard

ntdll: Use the full 4Gb for large address aware applications on Wow64.

parent 78ffde79
...@@ -567,7 +567,7 @@ static void mmap_init( const struct preload_info *preload_info ) ...@@ -567,7 +567,7 @@ static void mmap_init( const struct preload_info *preload_info )
static void *get_wow_user_space_limit(void) static void *get_wow_user_space_limit(void)
{ {
#ifdef _WIN64 #ifdef _WIN64
if (main_image_info.ImageCharacteristics & IMAGE_FILE_LARGE_ADDRESS_AWARE) return (void *)0xc0000000; if (main_image_info.ImageCharacteristics & IMAGE_FILE_LARGE_ADDRESS_AWARE) return (void *)0xffff0000;
return (void *)0x7fff0000; return (void *)0x7fff0000;
#endif #endif
return user_space_limit; return user_space_limit;
......
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