From 2a7825f5028391aed55e334a027eb1c670ba8dfd Mon Sep 17 00:00:00 2001 From: Phillip Susi Date: Tue, 5 Feb 2002 02:24:29 +0000 Subject: [PATCH] Balenced paged and non paged pool sizes to 100 megs each, instead of 4 paged and 400 non svn path=/trunk/; revision=2600 --- reactos/ntoskrnl/include/internal/pool.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/reactos/ntoskrnl/include/internal/pool.h b/reactos/ntoskrnl/include/internal/pool.h index 5d6babe878f..cf709282f2d 100644 --- a/reactos/ntoskrnl/include/internal/pool.h +++ b/reactos/ntoskrnl/include/internal/pool.h @@ -18,11 +18,11 @@ VOID MmInitializePagedPool(VOID); extern PVOID MmPagedPoolBase; extern ULONG MmPagedPoolSize; -#define MM_PAGED_POOL_SIZE (4*1024*1024) +#define MM_PAGED_POOL_SIZE (100*1024*1024) /* * Maximum size of the kmalloc area (this is totally arbitary) */ -#define NONPAGED_POOL_SIZE (400*1024*1024) +#define NONPAGED_POOL_SIZE (100*1024*1024) #endif /* __INTERNAL_POOL_H */