Commit c2a32a3a authored by Derek Lesho's avatar Derek Lesho Committed by Alexandre Julliard

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

parent 2a578eae
......@@ -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
......
......@@ -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;
/***********************************************************************
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment