Commit 6b0836e3 authored by Tim Clem's avatar Tim Clem Committed by Alexandre Julliard

loader: Reserve some space for 32-bit top-down allocations on 64-bit.

parent 0a330182
...@@ -108,11 +108,11 @@ static struct wine_preload_info preload_info[] = ...@@ -108,11 +108,11 @@ static struct wine_preload_info preload_info[] =
{ (void *)0x00000000, 0x00010000 }, /* low 64k */ { (void *)0x00000000, 0x00010000 }, /* low 64k */
{ (void *)0x00010000, 0x00100000 }, /* DOS area */ { (void *)0x00010000, 0x00100000 }, /* DOS area */
{ (void *)0x00110000, 0x67ef0000 }, /* low memory area */ { (void *)0x00110000, 0x67ef0000 }, /* low memory area */
{ (void *)0x7f000000, 0x03000000 }, /* top-down allocations + shared heap + virtual heap */ { (void *)0x7f000000, 0x03000000 }, /* top-down allocations + shared user data + virtual heap */
#else #else
{ (void *)0x000000010000, 0x00100000 }, /* DOS area */ { (void *)0x000000010000, 0x00100000 }, /* DOS area */
{ (void *)0x000000110000, 0x67ef0000 }, /* low memory area */ { (void *)0x000000110000, 0x67ef0000 }, /* low memory area */
{ (void *)0x00007ff00000, 0x000f0000 }, /* shared user data */ { (void *)0x00007f000000, 0x00ff0000 }, /* 32-bit top-down allocations + shared user data */
{ (void *)0x7ffffe000000, 0x01ff0000 }, /* top-down allocations + virtual heap */ { (void *)0x7ffffe000000, 0x01ff0000 }, /* top-down allocations + virtual heap */
#endif #endif
{ 0, 0 }, /* PE exe range set with WINEPRELOADRESERVE */ { 0, 0 }, /* PE exe range set with WINEPRELOADRESERVE */
......
...@@ -90,11 +90,11 @@ static struct wine_preload_info preload_info[] = ...@@ -90,11 +90,11 @@ static struct wine_preload_info preload_info[] =
{ (void *)0x00001000, 0x0000f000 }, /* low 64k */ { (void *)0x00001000, 0x0000f000 }, /* low 64k */
{ (void *)0x00010000, 0x00100000 }, /* DOS area */ { (void *)0x00010000, 0x00100000 }, /* DOS area */
{ (void *)0x00110000, 0x67ef0000 }, /* low memory area */ { (void *)0x00110000, 0x67ef0000 }, /* low memory area */
{ (void *)0x7f000000, 0x03000000 }, /* top-down allocations + shared heap + virtual heap */ { (void *)0x7f000000, 0x03000000 }, /* top-down allocations + shared user data + virtual heap */
#else /* __i386__ */ #else /* __i386__ */
{ (void *)0x000000010000, 0x00100000 }, /* DOS area */ { (void *)0x000000010000, 0x00100000 }, /* DOS area */
{ (void *)0x000000110000, 0x67ef0000 }, /* low memory area */ { (void *)0x000000110000, 0x67ef0000 }, /* low memory area */
{ (void *)0x00007ff00000, 0x000f0000 }, /* shared user data */ { (void *)0x00007f000000, 0x00ff0000 }, /* 32-bit top-down allocations + shared user data */
{ (void *)0x000100000000, 0x14000000 }, /* WINE_4GB_RESERVE section */ { (void *)0x000100000000, 0x14000000 }, /* WINE_4GB_RESERVE section */
{ (void *)0x7ff000000000, 0x01ff0000 }, /* top-down allocations + virtual heap */ { (void *)0x7ff000000000, 0x01ff0000 }, /* top-down allocations + virtual heap */
#endif /* __i386__ */ #endif /* __i386__ */
......
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