mirror of
https://github.com/reactos/reactos.git
synced 2025-08-03 17:56:00 +00:00
Add forgotten KeAcquire/ReleaseQueuedSpinLock exported funcs to hal.def
svn path=/trunk/; revision=22187
This commit is contained in:
parent
43ac9dd900
commit
5e792878e0
2 changed files with 24 additions and 0 deletions
|
@ -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
|
||||
|
|
|
@ -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 */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue