Commit 362ceb2e authored by Austin English's avatar Austin English Committed by Alexandre Julliard

ntoskrnl.exe: Add KeReleaseSpinLock stub.

parent f2589035
......@@ -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
......
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