mirror of
https://github.com/reactos/reactos.git
synced 2025-04-04 20:50:41 +00:00
[NTOSKRNL] Add the CcMapDataWait and CcMapDataNoWait counters
This commit is contained in:
parent
1dfbed9c3d
commit
227c4321c2
1 changed files with 12 additions and 0 deletions
|
@ -18,6 +18,9 @@
|
|||
|
||||
extern NPAGED_LOOKASIDE_LIST iBcbLookasideList;
|
||||
|
||||
ULONG CcMapDataWait = 0;
|
||||
ULONG CcMapDataNoWait = 0;
|
||||
|
||||
/* FUNCTIONS *****************************************************************/
|
||||
|
||||
/*
|
||||
|
@ -45,6 +48,15 @@ CcMapData (
|
|||
" pBcb 0x%p, pBuffer 0x%p)\n", FileObject, FileOffset->QuadPart,
|
||||
Length, Flags, pBcb, pBuffer);
|
||||
|
||||
if (Flags & MAP_WAIT)
|
||||
{
|
||||
++CcMapDataWait;
|
||||
}
|
||||
else
|
||||
{
|
||||
++CcMapDataNoWait;
|
||||
}
|
||||
|
||||
ReadOffset = FileOffset->QuadPart;
|
||||
|
||||
ASSERT(FileObject);
|
||||
|
|
Loading…
Reference in a new issue