Add forgotten KeAcquire/ReleaseQueuedSpinLock exported funcs to hal.def

svn path=/trunk/; revision=22187
This commit is contained in:
Aleksey Bragin 2006-06-02 20:15:54 +00:00
parent 43ac9dd900
commit 5e792878e0
2 changed files with 24 additions and 0 deletions

View file

@ -72,6 +72,7 @@ KdPortEnableInterrupts@0
KeAcquireSpinLock@8
@KeAcquireInStackQueuedSpinLock@8
@KeAcquireSpinLockRaiseToSynch@4
@KeAcquireQueuedSpinLock@4
KeGetCurrentIrql@0
KeFlushWriteBuffer@0
KeLowerIrql@4
@ -81,6 +82,7 @@ KeRaiseIrqlToDpcLevel@0
KeRaiseIrqlToSynchLevel@0
@KeReleaseInStackQueuedSpinLock@4
KeReleaseSpinLock@8
@KeReleaseQueuedSpinLock@8
KeStallExecutionProcessor@4
@KfAcquireSpinLock@4
@KfLowerIrql@4

View file

@ -130,4 +130,26 @@ KeReleaseInStackQueuedSpinLock(
UNIMPLEMENTED;
}
/*
* @unimplemented
*/
KIRQL
FASTCALL
KeAcquireQueuedSpinLock(IN PKLOCK_QUEUE_HANDLE LockHandle)
{
UNIMPLEMENTED;
return 0;
}
/*
* @unimplemented
*/
VOID
FASTCALL
KeReleaseQueuedSpinLock(IN PKLOCK_QUEUE_HANDLE LockHandle,
IN KIRQL OldIrql)
{
UNIMPLEMENTED;
}
/* EOF */