mirror of
https://github.com/reactos/reactos.git
synced 2025-08-05 18:02:56 +00:00
[NTOSKRNL] Implement (it's a bit raw for now!) the !filecache command in KDBG
This commit is contained in:
parent
9d1e16663a
commit
cb52c82125
2 changed files with 57 additions and 0 deletions
|
@ -93,6 +93,7 @@ static BOOLEAN KdbpCmdDmesg(ULONG Argc, PCHAR Argv[]);
|
|||
|
||||
BOOLEAN ExpKdbgExtPool(ULONG Argc, PCHAR Argv[]);
|
||||
BOOLEAN ExpKdbgExtPoolUsed(ULONG Argc, PCHAR Argv[]);
|
||||
BOOLEAN ExpKdbgExtFileCache(ULONG Argc, PCHAR Argv[]);
|
||||
|
||||
#ifdef __ROS_DWARF__
|
||||
static BOOLEAN KdbpCmdPrintStruct(ULONG Argc, PCHAR Argv[]);
|
||||
|
@ -186,6 +187,7 @@ static const struct
|
|||
{ "help", "help", "Display help screen.", KdbpCmdHelp },
|
||||
{ "!pool", "!pool [Address [Flags]]", "Display information about pool allocations.", ExpKdbgExtPool },
|
||||
{ "!poolused", "!poolused [Flags [Tag]]", "Display pool usage.", ExpKdbgExtPoolUsed },
|
||||
{ "!filecache", "!filecache", "Display cache usage.", ExpKdbgExtFileCache },
|
||||
};
|
||||
|
||||
/* FUNCTIONS *****************************************************************/
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue