ntoskrnl: Add KeAcquireSpinLockRaiseToDpc stub.
Signed-off-by: Austin English <austinenglish@gmail.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
26c5336494
commit
0c3a2a67a2
|
@ -3242,3 +3242,12 @@ void WINAPI KeReleaseInStackQueuedSpinLock( KLOCK_QUEUE_HANDLE *handle )
|
||||||
{
|
{
|
||||||
FIXME( "stub: %p\n", handle );
|
FIXME( "stub: %p\n", handle );
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/***********************************************************************
|
||||||
|
* KeAcquireSpinLockRaiseToDpc (NTOSKRNL.EXE.@)
|
||||||
|
*/
|
||||||
|
KIRQL WINAPI KeAcquireSpinLockRaiseToDpc(KSPIN_LOCK *spinlock)
|
||||||
|
{
|
||||||
|
FIXME( "stub: %p\n", spinlock );
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
|
@ -510,6 +510,7 @@
|
||||||
@ stdcall Ke386SetIoAccessMap(long ptr)
|
@ stdcall Ke386SetIoAccessMap(long ptr)
|
||||||
@ stub KeAcquireInterruptSpinLock
|
@ stub KeAcquireInterruptSpinLock
|
||||||
@ stub KeAcquireSpinLockAtDpcLevel
|
@ stub KeAcquireSpinLockAtDpcLevel
|
||||||
|
@ stdcall -arch=x86_64 KeAcquireSpinLockRaiseToDpc(ptr)
|
||||||
@ stub KeAddSystemServiceTable
|
@ stub KeAddSystemServiceTable
|
||||||
@ stub KeAreApcsDisabled
|
@ stub KeAreApcsDisabled
|
||||||
@ stub KeAttachProcess
|
@ stub KeAttachProcess
|
||||||
|
|
Loading…
Reference in New Issue