mirror of
https://github.com/reactos/reactos.git
synced 2025-02-24 09:25:10 +00:00
- Define KeInitializeSpinLock for ARM to unbreak build.
svn path=/trunk/; revision=43473
This commit is contained in:
parent
b938d88b35
commit
d2b61cb87e
1 changed files with 8 additions and 0 deletions
|
@ -5674,6 +5674,14 @@ KefReleaseSpinLockFromDpcLevel(
|
|||
|
||||
#elif defined(_M_ARM) // !defined (_X86_)
|
||||
|
||||
FORCEINLINE
|
||||
VOID
|
||||
KeInitializeSpinLock(IN PKSPIN_LOCK SpinLock)
|
||||
{
|
||||
/* Clear the lock */
|
||||
*SpinLock = 0;
|
||||
}
|
||||
|
||||
NTHALAPI
|
||||
KIRQL
|
||||
FASTCALL
|
||||
|
|
Loading…
Reference in a new issue