Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-cw
Commits
6b0836e3
Commit
6b0836e3
authored
May 31, 2023
by
Tim Clem
Committed by
Alexandre Julliard
May 31, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
loader: Reserve some space for 32-bit top-down allocations on 64-bit.
parent
0a330182
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
+4
-4
preloader.c
loader/preloader.c
+2
-2
preloader_mac.c
loader/preloader_mac.c
+2
-2
No files found.
loader/preloader.c
View file @
6b0836e3
...
...
@@ -108,11 +108,11 @@ static struct wine_preload_info preload_info[] =
{
(
void
*
)
0x00000000
,
0x00010000
},
/* low 64k */
{
(
void
*
)
0x00010000
,
0x00100000
},
/* DOS 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
{
(
void
*
)
0x000000010000
,
0x00100000
},
/* DOS area */
{
(
void
*
)
0x000000110000
,
0x67ef0000
},
/* low memory area */
{
(
void
*
)
0x00007f
f00000
,
0x000f0000
},
/*
shared user data */
{
(
void
*
)
0x00007f
000000
,
0x00ff0000
},
/* 32-bit top-down allocations +
shared user data */
{
(
void
*
)
0x7ffffe000000
,
0x01ff0000
},
/* top-down allocations + virtual heap */
#endif
{
0
,
0
},
/* PE exe range set with WINEPRELOADRESERVE */
...
...
loader/preloader_mac.c
View file @
6b0836e3
...
...
@@ -90,11 +90,11 @@ static struct wine_preload_info preload_info[] =
{
(
void
*
)
0x00001000
,
0x0000f000
},
/* low 64k */
{
(
void
*
)
0x00010000
,
0x00100000
},
/* DOS 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__ */
{
(
void
*
)
0x000000010000
,
0x00100000
},
/* DOS area */
{
(
void
*
)
0x000000110000
,
0x67ef0000
},
/* low memory area */
{
(
void
*
)
0x00007f
f00000
,
0x000f0000
},
/*
shared user data */
{
(
void
*
)
0x00007f
000000
,
0x00ff0000
},
/* 32-bit top-down allocations +
shared user data */
{
(
void
*
)
0x000100000000
,
0x14000000
},
/* WINE_4GB_RESERVE section */
{
(
void
*
)
0x7ff000000000
,
0x01ff0000
},
/* top-down allocations + virtual heap */
#endif
/* __i386__ */
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment