VirtualBox

Changeset 5229 in vbox for trunk/src/VBox/Runtime


Ignore:
Timestamp:
Oct 10, 2007 4:19:32 PM (17 years ago)
Author:
vboxsync
Message:

rtSemEventWait -> rtSemEventMultiWait.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Runtime/r0drv/linux/semeventmulti-r0drv-linux.c

    r5228 r5229  
    133133 * @param   fInterruptible      Whether it's an interruptible wait or not.
    134134 */
    135 static int rtSemEventWait(PRTSEMEVENTMULTIINTERNAL pThis, unsigned cMillies, bool fInterruptible)
     135static int rtSemEventMultiWait(PRTSEMEVENTMULTIINTERNAL pThis, unsigned cMillies, bool fInterruptible)
    136136{
    137137    /*
     
    190190    if (pThis->fState)
    191191        return VINF_SUCCESS;
    192     return rtSemEventWait(pThis, cMillies, false /* fInterruptible */);
     192    return rtSemEventMultiWait(pThis, cMillies, false /* fInterruptible */);
    193193}
    194194
     
    204204    if (pThis->fState)
    205205        return VINF_SUCCESS;
    206     return rtSemEventWait(pThis, cMillies, true /* fInterruptible */);
    207 }
    208 
     206    return rtSemEventMultiWait(pThis, cMillies, true /* fInterruptible */);
     207}
     208
Note: See TracChangeset for help on using the changeset viewer.

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