Changeset 63354 in vbox for trunk/src/VBox/Runtime/r0drv
- Timestamp:
- Aug 12, 2016 12:47:26 AM (9 years ago)
- svn:sync-xref-src-repo-rev:
- 109988
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r0drv/netbsd/spinlock-r0drv-netbsd.c
r63191 r63354 146 146 } 147 147 } 148 149 150 RTDECL(void) RTSpinlockReleaseNoInts(RTSPINLOCK Spinlock)151 {152 #if 1153 if (RT_UNLIKELY(!(Spinlock->fFlags & RTSPINLOCK_FLAGS_INTERRUPT_SAFE)))154 RTAssertMsg2("RTSpinlockReleaseNoInts: %p (magic=%#x)\n", Spinlock, Spinlock->u32Magic);155 #else156 AssertRelease(Spinlock->fFlags & RTSPINLOCK_FLAGS_INTERRUPT_SAFE);157 #endif158 RTSpinlockRelease(Spinlock);159 }
Note:
See TracChangeset
for help on using the changeset viewer.