[0.4.9][NTOS][USERSRV] Silence noisy debug output.

picked from 0.4.13-dev-82-g f5471b7b4b
This commit is contained in:
Joachim Henze 2020-12-21 08:52:41 +01:00
parent 9ff6310cdc
commit 16f9af86b5
3 changed files with 4 additions and 4 deletions

View file

@ -1368,7 +1368,7 @@ KeSaveFloatingPointState(OUT PKFLOATING_SAVE Save)
{ {
PFNSAVE_FORMAT FpState; PFNSAVE_FORMAT FpState;
ASSERT(KeGetCurrentIrql() <= DISPATCH_LEVEL); ASSERT(KeGetCurrentIrql() <= DISPATCH_LEVEL);
DPRINT1("%s is not really implemented\n", __FUNCTION__); UNIMPLEMENTED_ONCE;
/* check if we are doing software emulation */ /* check if we are doing software emulation */
if (!KeI386NpxPresent) return STATUS_ILLEGAL_FLOAT_CONTEXT; if (!KeI386NpxPresent) return STATUS_ILLEGAL_FLOAT_CONTEXT;
@ -1400,7 +1400,7 @@ KeRestoreFloatingPointState(IN PKFLOATING_SAVE Save)
{ {
PFNSAVE_FORMAT FpState = *((PVOID *) Save); PFNSAVE_FORMAT FpState = *((PVOID *) Save);
ASSERT(KeGetCurrentThread()->Header.NpxIrql == KeGetCurrentIrql()); ASSERT(KeGetCurrentThread()->Header.NpxIrql == KeGetCurrentIrql());
DPRINT1("%s is not really implemented\n", __FUNCTION__); UNIMPLEMENTED_ONCE;
#ifdef __GNUC__ #ifdef __GNUC__
asm volatile("fnclex\n\t"); asm volatile("fnclex\n\t");

View file

@ -285,7 +285,7 @@ MiInsertVadEx(
&Parent); &Parent);
if (Result == TableFoundNode) if (Result == TableFoundNode)
{ {
DPRINT1("Given address conflicts with existing node\n"); DPRINT("Given address conflicts with existing node\n");
KeReleaseGuardedMutex(&CurrentProcess->AddressCreationLock); KeReleaseGuardedMutex(&CurrentProcess->AddressCreationLock);
return STATUS_CONFLICTING_ADDRESSES; return STATUS_CONFLICTING_ADDRESSES;
} }

View file

@ -135,7 +135,7 @@ CSR_API(SrvGetThreadConsoleDesktop)
{ {
PUSER_GET_THREAD_CONSOLE_DESKTOP GetThreadConsoleDesktopRequest = &((PUSER_API_MESSAGE)ApiMessage)->Data.GetThreadConsoleDesktopRequest; PUSER_GET_THREAD_CONSOLE_DESKTOP GetThreadConsoleDesktopRequest = &((PUSER_API_MESSAGE)ApiMessage)->Data.GetThreadConsoleDesktopRequest;
DPRINT1("%s not yet implemented\n", __FUNCTION__); UNIMPLEMENTED_ONCE;
/* Return nothing for the moment... */ /* Return nothing for the moment... */
GetThreadConsoleDesktopRequest->ConsoleDesktop = NULL; GetThreadConsoleDesktopRequest->ConsoleDesktop = NULL;