Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
wine
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Gabriel Ivăncescu
wine
Commits
6b0836e3
Commit
6b0836e3
authored
1 year ago
by
Tim Clem
Committed by
Alexandre Julliard
1 year ago
Browse files
Options
Downloads
Patches
Plain Diff
loader: Reserve some space for 32-bit top-down allocations on 64-bit.
parent
0a330182
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
loader/preloader.c
+2
-2
2 additions, 2 deletions
loader/preloader.c
loader/preloader_mac.c
+2
-2
2 additions, 2 deletions
loader/preloader_mac.c
with
4 additions
and
4 deletions
loader/preloader.c
+
2
−
2
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
f
00000
,
0x00
0
f0000
},
/* shared user data */
{
(
void
*
)
0x00007f
0
00000
,
0x00
f
f0000
},
/*
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 */
...
...
This diff is collapsed.
Click to expand it.
loader/preloader_mac.c
+
2
−
2
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
f
00000
,
0x00
0
f0000
},
/* shared user data */
{
(
void
*
)
0x00007f
0
00000
,
0x00
f
f0000
},
/*
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__ */
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment