Changeset 49999 in vbox for trunk/src/VBox/VMM/VMMAll
- Timestamp:
- Dec 24, 2013 7:23:21 PM (11 years ago)
- svn:sync-xref-src-repo-rev:
- 91433
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/PDMAllCritSect.cpp
r49998 r49999 112 112 * Deals with the contended case in ring-3 and ring-0. 113 113 * 114 * @returns VINF_SUCCESS or VERR_SEM_DESTROYED. 114 * @retval VINF_SUCCESS on success. 115 * @retval VERR_SEM_DESTROYED if destroyed. 116 * @retval VERR_INTERRUPTED in ring-0 if we should return rcBusy or jump to 117 * ring-3. 118 * 115 119 * @param pCritSect The critsect. 116 120 * @param hNativeSelf The native thread handle. … … 144 148 # endif 145 149 # endif 146 for ( unsigned i = 0;; i++)150 for (;;) 147 151 { 148 152 /* … … 154 158 * In ring-0 we have to deal with the possibility that the thread has 155 159 * been signalled and the interruptible wait function returning 156 * immediately. We handle this by prefering the interruptible wait 157 * and alternating with short period of non-interruptible waiting. 160 * immediately. In that case we do normal R0/RC rcBusy handling. 158 161 */ 159 162 # ifdef IN_RING3 … … 170 173 RTThreadUnblocked(hThreadSelf, RTTHREADSTATE_CRITSECT); 171 174 # else /* IN_RING0 */ 172 int rc; 173 if ((i & 1) == 0) 174 rc = SUPSemEventWaitNoResume(pSession, hEvent, RT_INDEFINITE_WAIT); 175 else 176 rc = SUPSemEventWait(pSession, hEvent, 1000 /*ms*/); 175 int rc = SUPSemEventWaitNoResume(pSession, hEvent, RT_INDEFINITE_WAIT); 177 176 # endif /* IN_RING0 */ 178 177 … … 184 183 if (rc == VINF_SUCCESS) 185 184 return pdmCritSectEnterFirst(pCritSect, hNativeSelf, pSrcPos); 186 # ifdef IN_RING3187 185 AssertMsg(rc == VERR_INTERRUPTED, ("rc=%Rrc\n", rc)); 188 # else189 AssertMsg(rc == (!(i & 1) ? VERR_INTERRUPTED : VERR_TIMEOUT), ("rc=%Rrc i=%u\n", rc, i));186 # ifdef IN_RING0 187 return VERR_INTERRUPTED; 190 188 # endif 191 189 } … … 308 306 if ( RTThreadPreemptIsEnabled(NIL_RTTHREAD) 309 307 && ASMIntAreEnabled()) 310 return pdmR3R0CritSectEnterContended(pCritSect, hNativeSelf, pSrcPos); 308 { 309 int rc = pdmR3R0CritSectEnterContended(pCritSect, hNativeSelf, pSrcPos); 310 if (rc != VERR_INTERRUPTED) 311 return rc; 312 } 311 313 # endif 312 314 #endif /* IN_RING0 */
Note:
See TracChangeset
for help on using the changeset viewer.