mirror of
https://github.com/reactos/reactos.git
synced 2025-08-05 18:02:56 +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
|
NTAPI
|
||||||
MmUnlockPageableImageSection(IN PVOID ImageSectionHandle)
|
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
|
// We should just find the section and call MmLockPageableSectionByHandle
|
||||||
//
|
//
|
||||||
static BOOLEAN Warn; if (!Warn++) UNIMPLEMENTED;
|
static ULONG Warn; if (!Warn++) UNIMPLEMENTED;
|
||||||
return AddressWithinSection;
|
return AddressWithinSection;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue