ntoskrnl.exe: Add stubs for Ke(/Test)AlertThread.

Signed-off-by: Derek Lesho <dlesho@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Derek Lesho 2020-07-16 10:17:11 -05:00 committed by Alexandre Julliard
parent 2a578eaeb6
commit c2a32a3a3c
2 changed files with 20 additions and 0 deletions

View File

@ -529,6 +529,7 @@
@ stdcall KeAcquireSpinLockAtDpcLevel(ptr)
@ stdcall -arch=!i386 KeAcquireSpinLockRaiseToDpc(ptr)
@ stub KeAddSystemServiceTable
@ stdcall KeAlertThread(ptr long)
@ stdcall KeAreApcsDisabled()
@ stub KeAttachProcess
@ stdcall KeBugCheck(long)
@ -647,6 +648,7 @@
@ stdcall KeStackAttachProcess(ptr ptr)
@ stub KeSynchronizeExecution
@ stub KeTerminateThread
@ stdcall KeTestAlertThread(long)
@ extern KeTickCount
@ stdcall KeUnstackDetachProcess(ptr)
@ stub KeUpdateRunTime

View File

@ -696,6 +696,24 @@ void WINAPI KeInitializeApc(PRKAPC apc, PRKTHREAD thread, KAPC_ENVIRONMENT env,
}
}
/***********************************************************************
* KeTestAlertThread (NTOSKRNL.EXE.@)
*/
BOOLEAN WINAPI KeTestAlertThread(KPROCESSOR_MODE mode)
{
FIXME("stub! %u\n", mode);
return TRUE;
}
/***********************************************************************
* KeAlertThread (NTOSKRNL.EXE.@)
*/
BOOLEAN WINAPI KeAlertThread(PKTHREAD thread, KPROCESSOR_MODE mode)
{
FIXME("stub! %p mode %u\n", thread, mode);
return TRUE;
}
static KSPIN_LOCK cancel_lock;
/***********************************************************************