mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 10:04:49 +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:
parent
14a6c7e57d
commit
2a7825f502
1 changed files with 2 additions and 2 deletions
|
@ -18,11 +18,11 @@ VOID MmInitializePagedPool(VOID);
|
||||||
extern PVOID MmPagedPoolBase;
|
extern PVOID MmPagedPoolBase;
|
||||||
extern ULONG MmPagedPoolSize;
|
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)
|
* 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 */
|
#endif /* __INTERNAL_POOL_H */
|
||||||
|
|
Loading…
Reference in a new issue