- Timestamp:
- Aug 15, 2016 11:27:51 PM (8 years ago)
- Location:
- trunk/src/VBox/Runtime/r0drv/darwin
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r0drv/darwin/semevent-r0drv-darwin.cpp
r63509 r63519 137 137 { 138 138 uint32_t cRefs = ASMAtomicIncU32(&pThis->cRefs); 139 Assert(cRefs && cRefs < 100000); 139 Assert(cRefs && cRefs < 100000); RT_NOREF_PV(cRefs); 140 140 } 141 141 -
trunk/src/VBox/Runtime/r0drv/darwin/semeventmulti-r0drv-darwin.cpp
r63509 r63519 140 140 uint32_t cRefs = ASMAtomicIncU32(&pThis->cRefs); 141 141 Assert(cRefs && cRefs < 100000); 142 RT_NOREF_PV(cRefs); 142 143 } 143 144 -
trunk/src/VBox/Runtime/r0drv/darwin/threadpreempt-r0drv-darwin.cpp
r63509 r63519 104 104 RTDECL(bool) RTThreadPreemptIsEnabled(RTTHREAD hThread) 105 105 { 106 RT_NOREF(hThread); 106 107 Assert(hThread == NIL_RTTHREAD); 107 108 return preemption_enabled();
Note:
See TracChangeset
for help on using the changeset viewer.