ntoskrnl.exe: Add KeReleaseSpinLock stub.
Signed-off-by: Austin English <austinenglish@gmail.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
f25890357b
commit
362ceb2e56
|
@ -76,7 +76,7 @@
|
|||
@ stub KeRaiseIrql
|
||||
@ stub KeRaiseIrqlToDpcLevel
|
||||
@ stub KeRaiseIrqlToSynchLevel
|
||||
@ stub KeReleaseSpinLock
|
||||
@ stdcall KeReleaseSpinLock(ptr long) ntoskrnl.exe.KeReleaseSpinLock
|
||||
@ stub KeStallExecutionProcessor
|
||||
@ stub READ_PORT_BUFFER_UCHAR
|
||||
@ stub READ_PORT_BUFFER_ULONG
|
||||
|
|
|
@ -3251,3 +3251,11 @@ KIRQL WINAPI KeAcquireSpinLockRaiseToDpc(KSPIN_LOCK *spinlock)
|
|||
FIXME( "stub: %p\n", spinlock );
|
||||
return 0;
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
* KeReleaseSpinLock (NTOSKRNL.EXE.@)
|
||||
*/
|
||||
VOID WINAPI KeReleaseSpinLock( KSPIN_LOCK *spinlock, KIRQL irql )
|
||||
{
|
||||
FIXME( "stub: %p %u\n", spinlock, irql );
|
||||
}
|
||||
|
|
|
@ -592,6 +592,7 @@
|
|||
@ stub KeReleaseMutant
|
||||
@ stdcall KeReleaseMutex(ptr long)
|
||||
@ stdcall KeReleaseSemaphore(ptr long long long)
|
||||
@ stdcall KeReleaseSpinLock(ptr long)
|
||||
@ stub KeReleaseSpinLockFromDpcLevel
|
||||
@ stub KeRemoveByKeyDeviceQueue
|
||||
@ stub KeRemoveByKeyDeviceQueueIfBusy
|
||||
|
|
Loading…
Reference in New Issue