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
13163349
Commit
13163349
authored
Jul 21, 2006
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ntdll: Add a few more free list entries to the heap.
parent
c945c25b
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
4 deletions
+3
-4
heap.c
dlls/ntdll/heap.c
+3
-4
No files found.
dlls/ntdll/heap.c
View file @
13163349
...
@@ -88,13 +88,12 @@ typedef struct tagARENA_FREE
...
@@ -88,13 +88,12 @@ typedef struct tagARENA_FREE
/* minimum size that must remain to shrink an allocated block */
/* minimum size that must remain to shrink an allocated block */
#define HEAP_MIN_SHRINK_SIZE (HEAP_MIN_DATA_SIZE+sizeof(ARENA_FREE))
#define HEAP_MIN_SHRINK_SIZE (HEAP_MIN_DATA_SIZE+sizeof(ARENA_FREE))
#define HEAP_NB_FREE_LISTS 4
/* Number of free lists */
/* Max size of the blocks on the free lists */
/* Max size of the blocks on the free lists */
static
const
DWORD
HEAP_freeListSizes
[
HEAP_NB_FREE_LISTS
]
=
static
const
DWORD
HEAP_freeListSizes
[]
=
{
{
0x
20
,
0x80
,
0x2
00
,
~
0UL
0x
10
,
0x20
,
0x30
,
0x40
,
0x60
,
0x80
,
0x100
,
0x200
,
0x400
,
0x10
00
,
~
0UL
};
};
#define HEAP_NB_FREE_LISTS (sizeof(HEAP_freeListSizes)/sizeof(HEAP_freeListSizes[0]))
typedef
struct
typedef
struct
{
{
...
...
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