mirror of
https://github.com/reactos/reactos.git
synced 2025-04-05 05:01:03 +00:00
[NTOSKRNL] Prettify the memory dumper output and add number of allocs
This commit is contained in:
parent
78b55550bb
commit
bb63841b57
1 changed files with 12 additions and 3 deletions
|
@ -492,6 +492,15 @@ MiDumpNonPagedPoolConsumers(BOOLEAN CalledFromDbg)
|
||||||
DPRINT1("---------------------\n");
|
DPRINT1("---------------------\n");
|
||||||
DPRINT1("Out of memory dumper!\n");
|
DPRINT1("Out of memory dumper!\n");
|
||||||
}
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
KdbpPrint("Pool Used:\n");
|
||||||
|
}
|
||||||
|
|
||||||
|
//
|
||||||
|
// Print table header
|
||||||
|
//
|
||||||
|
MiDumperPrint(CalledFromDbg, "Tag\t\tAllocs\t\tUsed\n");
|
||||||
|
|
||||||
//
|
//
|
||||||
// We'll extract allocations for all the tracked pools
|
// We'll extract allocations for all the tracked pools
|
||||||
|
@ -527,16 +536,16 @@ MiDumpNonPagedPoolConsumers(BOOLEAN CalledFromDbg)
|
||||||
//
|
//
|
||||||
// Print in reversed order to match what is in source code
|
// Print in reversed order to match what is in source code
|
||||||
//
|
//
|
||||||
MiDumperPrint(CalledFromDbg, "Tag: '%c%c%c%c', Size: %ld\n", Tag[3], Tag[2], Tag[1], Tag[0], TableEntry->NonPagedBytes);
|
MiDumperPrint(CalledFromDbg, "'%c%c%c%c'\t\t%ld\t\t%ld\n", Tag[3], Tag[2], Tag[1], Tag[0], TableEntry->NonPagedAllocs, TableEntry->NonPagedBytes);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
MiDumperPrint(CalledFromDbg, "Tag: %x, Size: %ld\n", TableEntry->Key, TableEntry->NonPagedBytes);
|
MiDumperPrint(CalledFromDbg, "%x\t%ld\t\t%ld\n", TableEntry->Key, TableEntry->NonPagedAllocs, TableEntry->NonPagedBytes);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
MiDumperPrint(CalledFromDbg, "Anon, Size: %ld\n", TableEntry->NonPagedBytes);
|
MiDumperPrint(CalledFromDbg, "Anon\t\t%ld\t\t%ld\n", TableEntry->NonPagedAllocs, TableEntry->NonPagedBytes);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue