ntoskrnl.exe: Add KeReleaseInStackQueuedSpinLock stub.

Signed-off-by: Sebastian Lackner <sebastian@fds-team.de>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Sebastian Lackner 2017-03-07 16:01:48 +01:00 committed by Alexandre Julliard
parent f3ccfc092b
commit 83b9fdb23b
3 changed files with 15 additions and 1 deletions

View File

@ -9,7 +9,7 @@
@ stub KeAcquireQueuedSpinLock @ stub KeAcquireQueuedSpinLock
@ stub KeAcquireQueuedSpinLockRaiseToSynch @ stub KeAcquireQueuedSpinLockRaiseToSynch
@ stub KeAcquireSpinLockRaiseToSynch @ stub KeAcquireSpinLockRaiseToSynch
@ stub KeReleaseInStackQueuedSpinLock @ stdcall -norelay KeReleaseInStackQueuedSpinLock(ptr) ntoskrnl.exe.KeReleaseInStackQueuedSpinLock
@ stub KeReleaseQueuedSpinLock @ stub KeReleaseQueuedSpinLock
@ stub KeTryToAcquireQueuedSpinLock @ stub KeTryToAcquireQueuedSpinLock
@ stub KeTryToAcquireQueuedSpinLockRaiseToSynch @ stub KeTryToAcquireQueuedSpinLockRaiseToSynch

View File

@ -3201,3 +3201,16 @@ void WINAPI KeAcquireInStackQueuedSpinLock( KSPIN_LOCK *spinlock, KLOCK_QUEUE_HA
{ {
FIXME( "stub: %p %p\n", spinlock, handle ); FIXME( "stub: %p %p\n", spinlock, handle );
} }
/***********************************************************************
* KeReleaseInStackQueuedSpinLock (NTOSKRNL.EXE.@)
*/
#ifdef DEFINE_FASTCALL1_ENTRYPOINT
DEFINE_FASTCALL1_ENTRYPOINT( KeReleaseInStackQueuedSpinLock )
void WINAPI __regs_KeReleaseInStackQueuedSpinLock( KLOCK_QUEUE_HANDLE *handle )
#else
void WINAPI KeReleaseInStackQueuedSpinLock( KLOCK_QUEUE_HANDLE *handle )
#endif
{
FIXME( "stub: %p\n", handle);
}

View File

@ -43,6 +43,7 @@
@ stdcall -norelay IofCompleteRequest(ptr long) @ stdcall -norelay IofCompleteRequest(ptr long)
@ stdcall -norelay KeAcquireInStackQueuedSpinLock(ptr ptr) @ stdcall -norelay KeAcquireInStackQueuedSpinLock(ptr ptr)
@ stub KeAcquireInStackQueuedSpinLockAtDpcLevel @ stub KeAcquireInStackQueuedSpinLockAtDpcLevel
@ stdcall -norelay KeReleaseInStackQueuedSpinLock(ptr)
@ stub KeReleaseInStackQueuedSpinLockFromDpcLevel @ stub KeReleaseInStackQueuedSpinLockFromDpcLevel
@ stub KeSetTimeUpdateNotifyRoutine @ stub KeSetTimeUpdateNotifyRoutine
@ stub KefAcquireSpinLockAtDpcLevel @ stub KefAcquireSpinLockAtDpcLevel