Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
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-winehq
Commits
912e4d4d
Commit
912e4d4d
authored
Nov 07, 2008
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
loader: Reserve some space for the virtual heap too.
parent
66a39678
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
main.c
loader/main.c
+2
-2
preloader.c
loader/preloader.c
+1
-1
No files found.
loader/main.c
View file @
912e4d4d
...
...
@@ -33,8 +33,8 @@
#ifdef __APPLE__
asm
(
".zerofill WINE_DOS, WINE_DOS, ___wine_dos, 0x60000000"
);
asm
(
".zerofill WINE_SHARED_HEAP, WINE_SHARED_HEAP, ___wine_shared_heap, 0x0
2
000000"
);
extern
char
__wine_dos
[
0x60000000
],
__wine_shared_heap
[
0x0
2
000000
];
asm
(
".zerofill WINE_SHARED_HEAP, WINE_SHARED_HEAP, ___wine_shared_heap, 0x0
3
000000"
);
extern
char
__wine_dos
[
0x60000000
],
__wine_shared_heap
[
0x0
3
000000
];
static
const
struct
wine_preload_info
wine_main_preload_info
[]
=
{
...
...
loader/preloader.c
View file @
912e4d4d
...
...
@@ -111,7 +111,7 @@ static struct wine_preload_info preload_info[] =
{
(
void
*
)
0x00000000
,
0x00010000
},
/* low 64k */
{
(
void
*
)
0x00010000
,
0x00100000
},
/* DOS area */
{
(
void
*
)
0x00110000
,
0x5fef0000
},
/* low memory area */
{
(
void
*
)
0x7f000000
,
0x0
2000000
},
/* top-down allocations + shared
heap */
{
(
void
*
)
0x7f000000
,
0x0
3000000
},
/* top-down allocations + shared heap + virtual
heap */
{
0
,
0
},
/* PE exe range set with WINEPRELOADRESERVE */
{
0
,
0
}
/* end of list */
};
...
...
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