Changeset 50811 in vbox for trunk/src/VBox/Runtime/r0drv
- Timestamp:
- Mar 18, 2014 5:05:24 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r0drv/linux/spinlock-r0drv-linux.c
r48935 r50811 131 131 ("pThis=%p u32Magic=%08x\n", pThis, pThis ? (int)pThis->u32Magic : 0)); 132 132 133 #if defined(CONFIG_PROVE_LOCKING) && !defined(RT_STRICT)133 #ifdef CONFIG_PROVE_LOCKING 134 134 lockdep_off(); 135 135 #endif … … 142 142 else 143 143 spin_lock(&pThis->Spinlock); 144 #if defined(CONFIG_PROVE_LOCKING) && !defined(RT_STRICT)144 #ifdef CONFIG_PROVE_LOCKING 145 145 lockdep_on(); 146 146 #endif … … 159 159 RT_ASSERT_PREEMPT_CPUID_SPIN_RELEASE(pThis); 160 160 161 #if defined(CONFIG_PROVE_LOCKING) && !defined(RT_STRICT)161 #ifdef CONFIG_PROVE_LOCKING 162 162 lockdep_off(); 163 163 #endif … … 170 170 else 171 171 spin_unlock(&pThis->Spinlock); 172 #if defined(CONFIG_PROVE_LOCKING) && !defined(RT_STRICT)172 #ifdef CONFIG_PROVE_LOCKING 173 173 lockdep_on(); 174 174 #endif
Note:
See TracChangeset
for help on using the changeset viewer.