Changeset 22565 in vbox
- Timestamp:
- Aug 28, 2009 6:03:42 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r0drv/solaris/vbi/thread-r0drv-solaris.c
r22558 r22565 115 115 { 116 116 AssertPtr(pState); 117 Assert(pState->uOldPil == UINT32_MAX);117 // Assert(pState->uOldPil == UINT32_MAX); 118 118 119 119 vbi_preempt_disable(); … … 121 121 // if (ASMIntAreEnabled()) 122 122 //pState->uOldPil = splr(ipltospl(DISP_LEVEL)); 123 pState->uOldPil = splr(ipltospl(LOCK_LEVEL - 1)); //temporary123 // pState->uOldPil = splr(ipltospl(LOCK_LEVEL - 1)); //temporary 124 124 // else 125 125 // { … … 130 130 // } 131 131 132 Assert(pState->uOldPil != UINT32_MAX);132 // Assert(pState->uOldPil != UINT32_MAX); 133 133 RT_ASSERT_PREEMPT_CPUID_DISABLE(pState); 134 134 } … … 138 138 { 139 139 AssertPtr(pState); 140 Assert(pState->uOldPil != UINT32_MAX);140 // Assert(pState->uOldPil != UINT32_MAX); 141 141 RT_ASSERT_PREEMPT_CPUID_RESTORE(pState); 142 142 143 143 vbi_preempt_enable(); 144 splx(pState->uOldPil);144 // splx(pState->uOldPil); 145 145 146 pState->uOldPil = UINT32_MAX;146 // pState->uOldPil = UINT32_MAX; 147 147 } 148 148
Note:
See TracChangeset
for help on using the changeset viewer.