Commit c6373260 authored by Austin English's avatar Austin English Committed by Alexandre Julliard

ntoskrnl.exe: Add KeDelayExecutionThread stub.

parent b1c02353
......@@ -2488,3 +2488,12 @@ NTSTATUS WINAPI CmUnRegisterCallback(LARGE_INTEGER cookie)
FIXME("(%s): stub\n", wine_dbgstr_longlong(cookie.QuadPart));
return STATUS_NOT_IMPLEMENTED;
}
/***********************************************************************
* KeDelayExecutionThread (NTOSKRNL.EXE.@)
*/
NTSTATUS WINAPI KeDelayExecutionThread(KPROCESSOR_MODE waitmode, BOOLEAN alertable, PLARGE_INTEGER interval)
{
FIXME("%u %u %p", waitmode, alertable, interval);
return STATUS_NOT_IMPLEMENTED;
}
......@@ -518,7 +518,7 @@
@ stub KeClearEvent
@ stub KeConnectInterrupt
@ stub KeDcacheFlushCount
@ stub KeDelayExecutionThread
@ stdcall KeDelayExecutionThread(long long ptr)
@ stub KeDeregisterBugCheckCallback
@ stub KeDeregisterBugCheckReasonCallback
@ stub KeDetachProcess
......
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