ntdll: Set a proper HEAP_MIN_DATA_SIZE on 64-bit platforms.

This commit is contained in:
Alexandre Julliard 2006-07-21 11:53:52 +02:00
parent 1316334952
commit 4ed286b431
1 changed files with 2 additions and 1 deletions

View File

@ -84,7 +84,8 @@ typedef struct tagARENA_FREE
#define NOISY 0 /* Report all errors */
/* minimum data size (without arenas) of an allocated block */
#define HEAP_MIN_DATA_SIZE 16
/* make sure that it's larger than a free list entry */
#define HEAP_MIN_DATA_SIZE (2 * sizeof(struct list))
/* minimum size that must remain to shrink an allocated block */
#define HEAP_MIN_SHRINK_SIZE (HEAP_MIN_DATA_SIZE+sizeof(ARENA_FREE))