mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 10:04:49 +00:00
- Increment the number of free pages in MmFreeMemory.
svn path=/trunk/; revision=9731
This commit is contained in:
parent
a3de47e17a
commit
566b3a9f38
1 changed files with 2 additions and 0 deletions
|
@ -242,6 +242,8 @@ VOID MmFreeMemory(PVOID MemoryPointer)
|
|||
RealPageLookupTable[Idx].PageAllocationLength = 0;
|
||||
}
|
||||
|
||||
FreePagesInLookupTable += PageCount;
|
||||
|
||||
#ifdef DEBUG
|
||||
DecrementAllocationCount();
|
||||
DbgPrint((DPRINT_MEMORY, "Freed %d pages of memory starting at page %d. AllocationCount: %d\n", PageCount, PageNumber, AllocationCount));
|
||||
|
|
Loading…
Reference in a new issue