mirror of
https://github.com/reactos/reactos.git
synced 2025-06-12 08:08:29 +00:00
[FREELDR]
Silence some heap debug prints svn path=/trunk/; revision=55609
This commit is contained in:
parent
3658dda143
commit
c81baaf1d3
1 changed files with 4 additions and 4 deletions
|
@ -212,7 +212,7 @@ HeapRelease(
|
||||||
if (Block->Size == 0) break;
|
if (Block->Size == 0) break;
|
||||||
}
|
}
|
||||||
|
|
||||||
ERR("HeapRelease() done, freed %ld pages\n", AllFreePages);
|
TRACE("HeapRelease() done, freed %ld pages\n", AllFreePages);
|
||||||
}
|
}
|
||||||
|
|
||||||
VOID
|
VOID
|
||||||
|
@ -221,12 +221,12 @@ HeapCleanupAll(VOID)
|
||||||
PHEAP Heap;
|
PHEAP Heap;
|
||||||
|
|
||||||
Heap = FrLdrDefaultHeap;
|
Heap = FrLdrDefaultHeap;
|
||||||
ERR("Heap statistics for default heap:\n"
|
TRACE("Heap statistics for default heap:\n"
|
||||||
"CurrentAlloc=0x%lx, MaxAlloc=0x%lx, LargestAllocation=0x%lx\n"
|
"CurrentAlloc=0x%lx, MaxAlloc=0x%lx, LargestAllocation=0x%lx\n"
|
||||||
"NumAllocs=%ld, NumFrees=%ld\n",
|
"NumAllocs=%ld, NumFrees=%ld\n",
|
||||||
Heap->CurrentAllocBytes, Heap->MaxAllocBytes, Heap->LargestAllocation,
|
Heap->CurrentAllocBytes, Heap->MaxAllocBytes, Heap->LargestAllocation,
|
||||||
Heap->NumAllocs, Heap->NumFrees);
|
Heap->NumAllocs, Heap->NumFrees);
|
||||||
ERR("AllocTime = %I64d, FreeTime = %I64d, sum = %I64d\n",
|
TRACE("AllocTime = %I64d, FreeTime = %I64d, sum = %I64d\n",
|
||||||
Heap->AllocationTime, Heap->FreeTime, Heap->AllocationTime + Heap->FreeTime);
|
Heap->AllocationTime, Heap->FreeTime, Heap->AllocationTime + Heap->FreeTime);
|
||||||
|
|
||||||
|
|
||||||
|
@ -234,7 +234,7 @@ HeapCleanupAll(VOID)
|
||||||
HeapRelease(FrLdrDefaultHeap);
|
HeapRelease(FrLdrDefaultHeap);
|
||||||
|
|
||||||
Heap = FrLdrTempHeap;
|
Heap = FrLdrTempHeap;
|
||||||
ERR("Heap statistics for temp heap:\n"
|
TRACE("Heap statistics for temp heap:\n"
|
||||||
"CurrentAlloc=0x%lx, MaxAlloc=0x%lx, LargestAllocation=0x%lx\n"
|
"CurrentAlloc=0x%lx, MaxAlloc=0x%lx, LargestAllocation=0x%lx\n"
|
||||||
"NumAllocs=%ld, NumFrees=%ld\n",
|
"NumAllocs=%ld, NumFrees=%ld\n",
|
||||||
Heap->CurrentAllocBytes, Heap->MaxAllocBytes, Heap->LargestAllocation,
|
Heap->CurrentAllocBytes, Heap->MaxAllocBytes, Heap->LargestAllocation,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue