mirror of
https://github.com/reactos/reactos.git
synced 2025-02-23 17:05:46 +00:00
[WIN32K]
Silence 3 DPRINTs svn path=/trunk/; revision=50103
This commit is contained in:
parent
f5ce699517
commit
ccc082914c
1 changed files with 4 additions and 4 deletions
|
@ -239,7 +239,7 @@ MouseThreadMain(PVOID StartContext)
|
|||
|
||||
ptiMouse = PsGetCurrentThreadWin32Thread();
|
||||
ptiMouse->TIF_flags |= TIF_SYSTEMTHREAD;
|
||||
DPRINT1("\nMouse Thread 0x%x \n", ptiMouse);
|
||||
DPRINT("Mouse Thread 0x%x \n", ptiMouse);
|
||||
|
||||
KeSetPriorityThread(&PsGetCurrentThread()->Tcb,
|
||||
LOW_REALTIME_PRIORITY + 3);
|
||||
|
@ -539,7 +539,7 @@ KeyboardThreadMain(PVOID StartContext)
|
|||
|
||||
ptiKeyboard = PsGetCurrentThreadWin32Thread();
|
||||
ptiKeyboard->TIF_flags |= TIF_SYSTEMTHREAD;
|
||||
DPRINT1("\nKeyboard Thread 0x%x \n", ptiKeyboard);
|
||||
DPRINT("Keyboard Thread 0x%x \n", ptiKeyboard);
|
||||
|
||||
KeSetPriorityThread(&PsGetCurrentThread()->Tcb,
|
||||
LOW_REALTIME_PRIORITY + 3);
|
||||
|
@ -902,7 +902,7 @@ RawInputThreadMain(PVOID StartContext)
|
|||
|
||||
ptiRawInput = PsGetCurrentThreadWin32Thread();
|
||||
ptiRawInput->TIF_flags |= TIF_SYSTEMTHREAD;
|
||||
DPRINT1("\nRaw Input Thread 0x%x \n", ptiRawInput);
|
||||
DPRINT("Raw Input Thread 0x%x \n", ptiRawInput);
|
||||
|
||||
KeSetPriorityThread(&PsGetCurrentThread()->Tcb,
|
||||
LOW_REALTIME_PRIORITY + 3);
|
||||
|
|
Loading…
Reference in a new issue