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
2e1b87d5
Commit
2e1b87d5
authored
Sep 28, 2009
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
kernel32: Allocate the global arena array only once and store a pointer to it in THHOOK.
parent
55b5e3a7
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
8 deletions
+10
-8
global16.c
dlls/kernel32/global16.c
+10
-8
No files found.
dlls/kernel32/global16.c
View file @
2e1b87d5
...
...
@@ -71,6 +71,7 @@ static GLOBALARENA *pGlobalArena;
static
int
globalArenaSize
;
#define GLOBAL_MAX_ALLOC_SIZE 0x00ff0000
/* Largest allocation is 16M - 64K */
#define GLOBAL_MAX_COUNT 8192
/* Max number of allocated blocks */
#define VALID_HANDLE(handle) (((handle)>>__AHSHIFT)<globalArenaSize)
#define GET_ARENA_PTR(handle) (pGlobalArena + ((handle) >> __AHSHIFT))
...
...
@@ -113,15 +114,16 @@ static GLOBALARENA *GLOBAL_GetArena( WORD sel, WORD selcount )
if
(((
sel
>>
__AHSHIFT
)
+
selcount
)
>
globalArenaSize
)
{
int
newsize
=
((
sel
>>
__AHSHIFT
)
+
selcount
+
0xff
)
&
~
0xff
;
GLOBALARENA
*
pNewArena
;
if
(
pGlobalArena
)
pNewArena
=
HeapReAlloc
(
GetProcessHeap
(),
HEAP_ZERO_MEMORY
,
pGlobalArena
,
newsize
*
sizeof
(
GLOBALARENA
)
);
else
pNewArena
=
HeapAlloc
(
GetProcessHeap
(),
HEAP_ZERO_MEMORY
,
newsize
*
sizeof
(
GLOBALARENA
)
);
if
(
!
pNewArena
)
return
0
;
pGlobalArena
=
pNewArena
;
if
(
!
pGlobalArena
)
{
pGlobalArena
=
HeapAlloc
(
GetProcessHeap
(),
HEAP_ZERO_MEMORY
,
GLOBAL_MAX_COUNT
*
sizeof
(
GLOBALARENA
)
);
if
(
!
pGlobalArena
)
return
0
;
/* Hack: store a pointer to it in THHOOK instead of a handle */
*
(
GLOBALARENA
**
)
&
pThhook
->
hGlobalHeap
=
pGlobalArena
;
}
if
(
newsize
>
GLOBAL_MAX_COUNT
)
return
0
;
globalArenaSize
=
newsize
;
}
return
pGlobalArena
+
(
sel
>>
__AHSHIFT
);
...
...
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