Commit a2f864ca authored by Austin English's avatar Austin English Committed by Alexandre Julliard

ntoskrnl.exe: Add a stub for ExInterlockedRemoveHeadList.

parent 08f420d2
......@@ -2022,3 +2022,12 @@ NTSTATUS WINAPI IoCsqInitialize(PIO_CSQ csq, PIO_CSQ_INSERT_IRP insert_irp, PIO_
csq, insert_irp, remove_irp, peek_irp, acquire_lock, release_lock, complete_irp);
return STATUS_SUCCESS;
}
/*****************************************************
* ExInterlockedRemoveHeadList (NTOSKRNL.EXE.@)
*/
PLIST_ENTRY WINAPI ExInterlockedRemoveHeadList(PLIST_ENTRY head, PKSPIN_LOCK lock)
{
FIXME("(%p %p) stub\n", head, lock);
return NULL;
}
......@@ -153,7 +153,7 @@
@ stub ExInterlockedInsertTailList
@ stub ExInterlockedPopEntryList
@ stub ExInterlockedPushEntryList
@ stub ExInterlockedRemoveHeadList
@ stdcall ExInterlockedRemoveHeadList(ptr ptr)
@ stub ExIsProcessorFeaturePresent
@ stub ExIsResourceAcquiredExclusiveLite
@ stub ExIsResourceAcquiredSharedLite
......
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