mirror of
https://github.com/reactos/reactos.git
synced 2025-07-31 11:31:40 +00:00
[NTOS:MM]
- Add MmSysPteIndex, MmSysPteTables and MmSysPteListBySizeCount to make WinDbg's !sysptes extension happy svn path=/trunk/; revision=72490
This commit is contained in:
parent
493ad03e52
commit
cc9a7f1482
1 changed files with 9 additions and 0 deletions
|
@ -25,6 +25,15 @@ MMPTE MmFirstFreeSystemPte[MaximumPtePoolTypes];
|
|||
ULONG MmTotalFreeSystemPtes[MaximumPtePoolTypes];
|
||||
ULONG MmTotalSystemPtes;
|
||||
ULONG MiNumberOfExtraSystemPdes;
|
||||
const ULONG MmSysPteIndex[5] = { 1, 2, 4, 8, 16 };
|
||||
const UCHAR MmSysPteTables[] = { 0, // 1
|
||||
0, // 1
|
||||
1, // 2
|
||||
2, 2, // 4
|
||||
3, 3, 3, 3, // 8
|
||||
4, 4, 4, 4, 4, 4, 4, 4 // 16
|
||||
};
|
||||
LONG MmSysPteListBySizeCount[5];
|
||||
|
||||
/* PRIVATE FUNCTIONS **********************************************************/
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue