Balenced paged and non paged pool sizes to 100 megs each, instead of 4 paged and...
authorPhillip Susi <phreak@iag.net>
Tue, 5 Feb 2002 02:24:29 +0000 (02:24 +0000)
committerPhillip Susi <phreak@iag.net>
Tue, 5 Feb 2002 02:24:29 +0000 (02:24 +0000)
svn path=/trunk/; revision=2600

reactos/ntoskrnl/include/internal/pool.h

index 5d6babe..cf70928 100644 (file)
@@ -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 */