- Add some globals WinDbg expected to find when using !sysptes and !vm. Unused but makes the debugger happy

svn path=/trunk/; revision=69173
This commit is contained in:
Stefan Ginsberg 2015-09-10 19:47:45 +00:00
parent d6f9fd9121
commit b77dacb82b
2 changed files with 3 additions and 0 deletions

View file

@ -43,6 +43,8 @@ ULONG MiSpecialPoolExtraCount;
PMMPTE MiSpecialPoolFirstPte;
PMMPTE MiSpecialPoolLastPte;
PFN_COUNT MmSpecialPagesInUse;
PFN_COUNT MiSpecialPagesNonPaged;
PFN_NUMBER MiSpecialPagesNonPagedMaximum;
BOOLEAN MmSpecialPoolCatchOverruns = TRUE;

View file

@ -24,6 +24,7 @@ PMMPTE MmSystemPtesEnd[MaximumPtePoolTypes];
MMPTE MmFirstFreeSystemPte[MaximumPtePoolTypes];
ULONG MmTotalFreeSystemPtes[MaximumPtePoolTypes];
ULONG MmTotalSystemPtes;
ULONG MiNumberOfExtraSystemPdes;
/* PRIVATE FUNCTIONS **********************************************************/