ntoskrnl.exe: Stub for KeWaitForSingleObject.
This commit is contained in:
parent
b79a474033
commit
80450122fe
|
@ -986,6 +986,20 @@ ULONG WINAPI KeQueryTimeIncrement(void)
|
|||
}
|
||||
|
||||
|
||||
/***********************************************************************
|
||||
* KeWaitForSingleObject (NTOSKRNL.EXE.@)
|
||||
*/
|
||||
NTSTATUS WINAPI KeWaitForSingleObject(PVOID Object,
|
||||
KWAIT_REASON WaitReason,
|
||||
KPROCESSOR_MODE WaitMode,
|
||||
BOOLEAN Alertable,
|
||||
PLARGE_INTEGER Timeout)
|
||||
{
|
||||
FIXME( "stub: %p, %d, %d, %d, %p\n", Object, WaitReason, WaitMode, Alertable, Timeout );
|
||||
return STATUS_NOT_IMPLEMENTED;
|
||||
}
|
||||
|
||||
|
||||
/***********************************************************************
|
||||
* MmAllocateNonCachedMemory (NTOSKRNL.EXE.@)
|
||||
*/
|
||||
|
|
|
@ -629,7 +629,7 @@
|
|||
@ stub KeUserModeCallback
|
||||
@ stub KeWaitForMultipleObjects
|
||||
@ stub KeWaitForMutexObject
|
||||
@ stub KeWaitForSingleObject
|
||||
@ stdcall KeWaitForSingleObject(ptr long long long ptr)
|
||||
@ stub KiBugCheckData
|
||||
@ stub KiCoprocessorError
|
||||
@ stub KiDeliverApc
|
||||
|
|
Loading…
Reference in New Issue