Changeset 48042 in vbox for trunk/src/VBox
- Timestamp:
- Aug 24, 2013 12:04:57 PM (11 years ago)
- Location:
- trunk/src/VBox
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostDrivers/Support/solaris/SUPDrv-solaris.c
r47537 r48042 1194 1194 char szMsg[512]; 1195 1195 1196 if (!RTThreadPreemptIsEnabled(NIL_RTTHREAD)) /** @todo this will change when preemption hooks are implemented. */ 1196 /* cmn_err() acquires adaptive mutexes. Not preemption safe, see @bugref{6657}. */ 1197 if (!RTThreadPreemptIsEnabled(NIL_RTTHREAD)) 1197 1198 return 0; 1198 1199 -
trunk/src/VBox/Runtime/r0drv/solaris/RTLogWriteDebugger-r0drv-solaris.c
r45433 r48042 46 46 if (pch[cb] != '\0') 47 47 AssertBreakpoint(); 48 if (!RTThreadPreemptIsEnabled(NIL_RTTHREAD)) /** @todo this will change when preemptions hook are implemented. */ 48 49 /* cmn_err() acquires adaptive mutexes. Not preemption safe, see @bugref{6657}. */ 50 if (!RTThreadPreemptIsEnabled(NIL_RTTHREAD)) 49 51 return; 52 50 53 if ( !g_frtSolSplSetsEIF 51 54 #if defined(RT_ARCH_AMD64) || defined(RT_ARCH_X86) … … 55 58 #endif 56 59 ) 60 { 57 61 cmn_err(CE_CONT, pch); 62 } 63 58 64 return; 59 65 }
Note:
See TracChangeset
for help on using the changeset viewer.