Home | Info | Community | Development | myReactOS | Contact Us
Definition at line 120 of file spinlock.c.
{ #ifdef CONFIG_SMP /* Make sure we are at DPC or above! */ if (KeGetCurrentIrql() < DISPATCH_LEVEL) { /* We aren't -- bugcheck */ KeBugCheckEx(IRQL_NOT_GREATER_OR_EQUAL, (ULONG_PTR)LockHandle->Lock, KeGetCurrentIrql(), 0, 0); } /* Do the inlined function */ KxReleaseSpinLock(LockHandle->Lock); #endif }