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
dc4d0569
Commit
dc4d0569
authored
May 28, 2004
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Don't rely on the reserved area list being empty in reserve_area,
since the preloader will need to add things to the list before startup.
parent
f974c859
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
26 deletions
+4
-26
virtual.c
dlls/ntdll/virtual.c
+2
-0
mmap.c
libs/wine/mmap.c
+2
-26
No files found.
dlls/ntdll/virtual.c
View file @
dc4d0569
...
...
@@ -266,6 +266,8 @@ static void add_reserved_area( void *addr, size_t size )
size
-=
(
char
*
)
USER_SPACE_LIMIT
-
(
char
*
)
addr
;
addr
=
USER_SPACE_LIMIT
;
}
/* blow away existing mappings */
wine_anon_mmap
(
addr
,
size
,
PROT_NONE
,
MAP_NORESERVE
|
MAP_FIXED
);
wine_mmap_add_reserved_area
(
addr
,
size
);
}
...
...
libs/wine/mmap.c
View file @
dc4d0569
...
...
@@ -201,32 +201,13 @@ static void reserve_area( void *addr, void *end )
{
void
*
ptr
;
size_t
size
=
(
char
*
)
end
-
(
char
*
)
addr
;
struct
list
*
prev
;
struct
reserved_area
*
area
;
if
((
ptr
=
wine_anon_mmap
(
addr
,
size
,
PROT_NONE
,
MAP_NORESERVE
))
!=
(
void
*
)
-
1
)
{
if
(
ptr
==
addr
)
{
if
(
!
end
)
size
--
;
/* avoid wrap-around */
/* try to merge it with the previous one */
if
((
prev
=
list_tail
(
&
reserved_areas
)))
{
area
=
LIST_ENTRY
(
prev
,
struct
reserved_area
,
entry
);
if
(
area
&&
(
char
*
)
area
->
base
+
area
->
size
==
(
char
*
)
ptr
)
{
area
->
size
+=
size
;
return
;
}
}
/* create a new area */
if
((
area
=
malloc
(
sizeof
(
*
area
)
)))
{
area
->
base
=
addr
;
area
->
size
=
size
;
list_add_tail
(
&
reserved_areas
,
&
area
->
entry
);
return
;
}
wine_mmap_add_reserved_area
(
addr
,
size
);
return
;
}
else
munmap
(
ptr
,
size
);
}
...
...
@@ -287,11 +268,6 @@ void wine_mmap_add_reserved_area( void *addr, size_t size )
if
(
!
((
char
*
)
addr
+
size
))
size
--
;
/* avoid wrap-around */
#ifdef HAVE_MMAP
/* blow away existing mappings */
wine_anon_mmap
(
addr
,
size
,
PROT_NONE
,
MAP_NORESERVE
|
MAP_FIXED
);
#endif
LIST_FOR_EACH
(
ptr
,
&
reserved_areas
)
{
area
=
LIST_ENTRY
(
ptr
,
struct
reserved_area
,
entry
);
...
...
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