mirror of
https://github.com/reactos/reactos.git
synced 2025-08-06 07:13:23 +00:00
[NTOS]
- Warn only once in MmSecureVirtualMemory/MmUnsecureVirtualMemory, like it was done in 47864. svn path=/trunk/; revision=47875
This commit is contained in:
parent
e53a466981
commit
5794cf44f1
1 changed files with 2 additions and 2 deletions
|
@ -742,7 +742,7 @@ MmSecureVirtualMemory(IN PVOID Address,
|
||||||
IN SIZE_T Length,
|
IN SIZE_T Length,
|
||||||
IN ULONG Mode)
|
IN ULONG Mode)
|
||||||
{
|
{
|
||||||
UNIMPLEMENTED;
|
static BOOLEAN Warn; if (!Warn++) UNIMPLEMENTED;
|
||||||
return Address;
|
return Address;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -753,7 +753,7 @@ VOID
|
||||||
NTAPI
|
NTAPI
|
||||||
MmUnsecureVirtualMemory(IN PVOID SecureMem)
|
MmUnsecureVirtualMemory(IN PVOID SecureMem)
|
||||||
{
|
{
|
||||||
UNIMPLEMENTED;
|
static BOOLEAN Warn; if (!Warn++) UNIMPLEMENTED;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* SYSTEM CALLS ***************************************************************/
|
/* SYSTEM CALLS ***************************************************************/
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue