VirtualBox

Changeset 49999 in vbox for trunk/src/VBox/VMM/VMMAll


Ignore:
Timestamp:
Dec 24, 2013 7:23:21 PM (11 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
91433
Message:

pdmR3R0CritSectEnterContended: Ok, that didn't work, so next attempt.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/VMM/VMMAll/PDMAllCritSect.cpp

    r49998 r49999  
    112112 * Deals with the contended case in ring-3 and ring-0.
    113113 *
    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 *
    115119 * @param   pCritSect           The critsect.
    116120 * @param   hNativeSelf         The native thread handle.
     
    144148#  endif
    145149# endif
    146     for (unsigned i = 0;; i++)
     150    for (;;)
    147151    {
    148152        /*
     
    154158         * In ring-0 we have to deal with the possibility that the thread has
    155159         * 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.
    158161         */
    159162# ifdef IN_RING3
     
    170173        RTThreadUnblocked(hThreadSelf, RTTHREADSTATE_CRITSECT);
    171174# 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);
    177176# endif /* IN_RING0 */
    178177
     
    184183        if (rc == VINF_SUCCESS)
    185184            return pdmCritSectEnterFirst(pCritSect, hNativeSelf, pSrcPos);
    186 # ifdef IN_RING3
    187185        AssertMsg(rc == VERR_INTERRUPTED, ("rc=%Rrc\n", rc));
    188 # else
    189         AssertMsg(rc == (!(i & 1) ? VERR_INTERRUPTED : VERR_TIMEOUT), ("rc=%Rrc i=%u\n", rc, i));
     186# ifdef IN_RING0
     187        return VERR_INTERRUPTED;
    190188# endif
    191189    }
     
    308306    if (   RTThreadPreemptIsEnabled(NIL_RTTHREAD)
    309307        && ASMIntAreEnabled())
    310         return pdmR3R0CritSectEnterContended(pCritSect, hNativeSelf, pSrcPos);
     308    {
     309        int rc = pdmR3R0CritSectEnterContended(pCritSect, hNativeSelf, pSrcPos);
     310        if (rc != VERR_INTERRUPTED)
     311            return rc;
     312    }
    311313#  endif
    312314#endif /* IN_RING0 */
Note: See TracChangeset for help on using the changeset viewer.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette