Changeset 22139 in vbox for trunk/src/VBox/Runtime/r0drv
- Timestamp:
- Aug 10, 2009 2:18:37 PM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 50907
- Location:
- trunk/src/VBox/Runtime/r0drv
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r0drv/linux/spinlock-r0drv-linux.c
r22131 r22139 145 145 spin_unlock_irqrestore(&pThis->Spinlock, pTmp->flFlags); 146 146 147 RT_ASSERT_PREEMPT_CPUID _SPIN_RELEASED();147 RT_ASSERT_PREEMPT_CPUID(); 148 148 } 149 149 RT_EXPORT_SYMBOL(RTSpinlockReleaseNoInts); … … 176 176 spin_unlock(&pThis->Spinlock); 177 177 178 RT_ASSERT_PREEMPT_CPUID _SPIN_RELEASED();178 RT_ASSERT_PREEMPT_CPUID(); 179 179 } 180 180 RT_EXPORT_SYMBOL(RTSpinlockRelease); -
trunk/src/VBox/Runtime/r0drv/solaris/spinlock-r0drv-solaris.c
r22134 r22139 141 141 ASMSetFlags(pTmp->uFlags); 142 142 143 RT_ASSERT_PREEMPT_CPUID _SPIN_RELEASED();143 RT_ASSERT_PREEMPT_CPUID(); 144 144 } 145 145 … … 171 171 mutex_exit(&pThis->Mtx); 172 172 173 RT_ASSERT_PREEMPT_CPUID _SPIN_RELEASED();173 RT_ASSERT_PREEMPT_CPUID(); 174 174 } 175 175
Note:
See TracChangeset
for help on using the changeset viewer.