mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-08-28 19:26:16 +00:00
Balenced paged and non paged pool sizes to 100 megs each, instead of 4 paged and 400 non
svn path=/trunk/; revision=2600
This commit is contained in:
@@ -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 */
|
||||
|
||||
Reference in New Issue
Block a user