Changeset 22150 in vbox for trunk/src/VBox/Runtime/r0drv/freebsd/thread-r0drv-freebsd.c
- Timestamp:
- Aug 11, 2009 9:41:58 AM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r0drv/freebsd/thread-r0drv-freebsd.c
r21536 r22150 143 143 { 144 144 AssertPtr(pState); 145 Assert(pState->u chDummy != 42);146 pState->u chDummy= 42;145 Assert(pState->u32Reserved == 0); 146 pState->u32Reserved = 42; 147 147 148 148 critical_enter(); 149 RT_ASSERT_PREEMPT_CPUID_DISABLE(pState); 149 150 } 150 151 … … 153 154 { 154 155 AssertPtr(pState); 155 Assert(pState->u chDummy== 42);156 pState->u chDummy= 0;156 Assert(pState->u32Reserved == 42); 157 pState->u32Reserved = 0; 157 158 159 RT_ASSERT_PREEMPT_CPUID_RESTORE(pState); 158 160 critical_exit(); 159 161 }
Note:
See TracChangeset
for help on using the changeset viewer.