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
|
@ -3240,5 +3240,14 @@ void WINAPI __regs_KeReleaseInStackQueuedSpinLock( KLOCK_QUEUE_HANDLE *handle )
|
|||
void WINAPI KeReleaseInStackQueuedSpinLock( KLOCK_QUEUE_HANDLE *handle )
|
||||
#endif
|
||||
{
|
||||
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)
|
||||
@ stub KeAcquireInterruptSpinLock
|
||||
@ stub KeAcquireSpinLockAtDpcLevel
|
||||
@ stdcall -arch=x86_64 KeAcquireSpinLockRaiseToDpc(ptr)
|
||||
@ stub KeAddSystemServiceTable
|
||||
@ stub KeAreApcsDisabled
|
||||
@ stub KeAttachProcess
|
||||
|
|
Loading…
Reference in New Issue