VirtualBox

Changeset 25728 in vbox for trunk/src/VBox/Additions/x11


Ignore:
Timestamp:
Jan 11, 2010 3:12:52 PM (15 years ago)
Author:
vboxsync
Message:

*: Use RTMSINTERVAL for timeouts.

Location:
trunk/src/VBox/Additions/x11/VBoxClient
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Additions/x11/VBoxClient/clipboard.h

    r8155 r25728  
    108108     * @param cMillies how long to wait for the thread to stop
    109109     */
    110     void uninit(unsigned cMillies = RT_INDEFINITE_WAIT)
     110    void uninit(RTMSINTERVAL cMillies = RT_INDEFINITE_WAIT)
    111111    {
    112112        LogFlowThisFunc(("\n"));
  • trunk/src/VBox/Additions/x11/VBoxClient/seamless-host.cpp

    r21227 r25728  
    7373
    7474/** Stops the service. */
    75 void VBoxGuestSeamlessHost::stop(unsigned cMillies /* = RT_INDEFINITE_WAIT */)
     75void VBoxGuestSeamlessHost::stop(RTMSINTERVAL cMillies /* = RT_INDEFINITE_WAIT */)
    7676{
    7777    LogFlowThisFunc(("returning\n"));
  • trunk/src/VBox/Additions/x11/VBoxClient/seamless-host.h

    r21227 r25728  
    147147     * @param cMillies how long to wait for the thread to exit
    148148     */
    149     void stop(unsigned cMillies = RT_INDEFINITE_WAIT);
     149    void stop(RTMSINTERVAL cMillies = RT_INDEFINITE_WAIT);
    150150
    151151    /** Returns the current state of the host - i.e. requesting seamless or not. */
  • trunk/src/VBox/Additions/x11/VBoxClient/seamless.h

    r8695 r25728  
    178178    }
    179179
    180     void uninit(unsigned cMillies = RT_INDEFINITE_WAIT)
     180    void uninit(RTMSINTERVAL cMillies = RT_INDEFINITE_WAIT)
    181181    {
    182182        LogFlowThisFunc(("\n"));
  • trunk/src/VBox/Additions/x11/VBoxClient/thread.cpp

    r8155 r25728  
    2626
    2727/** Stop the thread using its stop method and get the exit value. */
    28 int VBoxGuestThread::stop(unsigned cMillies, int *prc)
     28int VBoxGuestThread::stop(RTMSINTERVAL cMillies, int *prc)
    2929{
    3030    int rc = VINF_SUCCESS;
  • trunk/src/VBox/Additions/x11/VBoxClient/thread.h

    r8155 r25728  
    104104     * @param   prc             Where to store the return code of the thread. Optional.
    105105     */
    106     int stop(unsigned cMillies, int *prc);
     106    int stop(RTMSINTERVAL cMillies, int *prc);
    107107
    108108    /** Destroy the class, stopping the thread if necessary. */
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