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:
Austin English 2017-06-21 13:29:37 -05:00 committed by Alexandre Julliard
parent f25890357b
commit 362ceb2e56
3 changed files with 10 additions and 1 deletions

View file

@ -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

View file

@ -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 );
}

View file

@ -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