mirror of
https://github.com/reactos/reactos.git
synced 2024-12-27 17:44:45 +00:00
implemented KeAcquireSpinLockRaiseToSynch
svn path=/trunk/; revision=5547
This commit is contained in:
parent
18ebc095c1
commit
038fbb6783
1 changed files with 3 additions and 2 deletions
|
@ -1,4 +1,4 @@
|
|||
/* $Id: spinlock.c,v 1.3 2002/09/08 10:22:24 chorns Exp $
|
||||
/* $Id: spinlock.c,v 1.4 2003/08/12 21:19:50 royce Exp $
|
||||
*
|
||||
* COPYRIGHT: See COPYING in the top level directory
|
||||
* PROJECT: ReactOS kernel
|
||||
|
@ -44,7 +44,8 @@ KeAcquireSpinLockRaiseToSynch (
|
|||
PKSPIN_LOCK SpinLock
|
||||
)
|
||||
{
|
||||
UNIMPLEMENTED;
|
||||
ASSERT_IRQL(SYNCH_LEVEL);
|
||||
KeAcquireSpinLockAtDpcLevel(SpinLock);
|
||||
}
|
||||
|
||||
VOID STDCALL
|
||||
|
|
Loading…
Reference in a new issue