ntoskrnl.exe: Add a stub for ExInterlockedRemoveHeadList.
This commit is contained in:
parent
08f420d2de
commit
a2f864cac8
|
@ -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);
|
csq, insert_irp, remove_irp, peek_irp, acquire_lock, release_lock, complete_irp);
|
||||||
return STATUS_SUCCESS;
|
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 ExInterlockedInsertTailList
|
||||||
@ stub ExInterlockedPopEntryList
|
@ stub ExInterlockedPopEntryList
|
||||||
@ stub ExInterlockedPushEntryList
|
@ stub ExInterlockedPushEntryList
|
||||||
@ stub ExInterlockedRemoveHeadList
|
@ stdcall ExInterlockedRemoveHeadList(ptr ptr)
|
||||||
@ stub ExIsProcessorFeaturePresent
|
@ stub ExIsProcessorFeaturePresent
|
||||||
@ stub ExIsResourceAcquiredExclusiveLite
|
@ stub ExIsResourceAcquiredExclusiveLite
|
||||||
@ stub ExIsResourceAcquiredSharedLite
|
@ stub ExIsResourceAcquiredSharedLite
|
||||||
|
|
Loading…
Reference in New Issue