mirror of
https://github.com/reactos/reactos.git
synced 2024-11-20 06:15:26 +00:00
[NTOS:MM]
Addendum to r74263: - Really only warn once in MmLockPageableDataSection/MmUnlockPageableImageSection, not on every 256th call svn path=/trunk/; revision=74291
This commit is contained in:
parent
d1fa8b8908
commit
35eb4001b2
1 changed files with 2 additions and 2 deletions
|
@ -36,7 +36,7 @@ VOID
|
|||
NTAPI
|
||||
MmUnlockPageableImageSection(IN PVOID ImageSectionHandle)
|
||||
{
|
||||
UNIMPLEMENTED;
|
||||
static ULONG Warn; if (!Warn++) UNIMPLEMENTED;
|
||||
}
|
||||
|
||||
/*
|
||||
|
@ -59,7 +59,7 @@ MmLockPageableDataSection(IN PVOID AddressWithinSection)
|
|||
//
|
||||
// We should just find the section and call MmLockPageableSectionByHandle
|
||||
//
|
||||
static BOOLEAN Warn; if (!Warn++) UNIMPLEMENTED;
|
||||
static ULONG Warn; if (!Warn++) UNIMPLEMENTED;
|
||||
return AddressWithinSection;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue