Changeset 25728 in vbox for trunk/src/VBox/Additions/x11
- Timestamp:
- Jan 11, 2010 3:12:52 PM (15 years ago)
- Location:
- trunk/src/VBox/Additions/x11/VBoxClient
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/x11/VBoxClient/clipboard.h
r8155 r25728 108 108 * @param cMillies how long to wait for the thread to stop 109 109 */ 110 void uninit( unsignedcMillies = RT_INDEFINITE_WAIT)110 void uninit(RTMSINTERVAL cMillies = RT_INDEFINITE_WAIT) 111 111 { 112 112 LogFlowThisFunc(("\n")); -
trunk/src/VBox/Additions/x11/VBoxClient/seamless-host.cpp
r21227 r25728 73 73 74 74 /** Stops the service. */ 75 void VBoxGuestSeamlessHost::stop( unsignedcMillies /* = RT_INDEFINITE_WAIT */)75 void VBoxGuestSeamlessHost::stop(RTMSINTERVAL cMillies /* = RT_INDEFINITE_WAIT */) 76 76 { 77 77 LogFlowThisFunc(("returning\n")); -
trunk/src/VBox/Additions/x11/VBoxClient/seamless-host.h
r21227 r25728 147 147 * @param cMillies how long to wait for the thread to exit 148 148 */ 149 void stop( unsignedcMillies = RT_INDEFINITE_WAIT);149 void stop(RTMSINTERVAL cMillies = RT_INDEFINITE_WAIT); 150 150 151 151 /** Returns the current state of the host - i.e. requesting seamless or not. */ -
trunk/src/VBox/Additions/x11/VBoxClient/seamless.h
r8695 r25728 178 178 } 179 179 180 void uninit( unsignedcMillies = RT_INDEFINITE_WAIT)180 void uninit(RTMSINTERVAL cMillies = RT_INDEFINITE_WAIT) 181 181 { 182 182 LogFlowThisFunc(("\n")); -
trunk/src/VBox/Additions/x11/VBoxClient/thread.cpp
r8155 r25728 26 26 27 27 /** Stop the thread using its stop method and get the exit value. */ 28 int VBoxGuestThread::stop( unsignedcMillies, int *prc)28 int VBoxGuestThread::stop(RTMSINTERVAL cMillies, int *prc) 29 29 { 30 30 int rc = VINF_SUCCESS; -
trunk/src/VBox/Additions/x11/VBoxClient/thread.h
r8155 r25728 104 104 * @param prc Where to store the return code of the thread. Optional. 105 105 */ 106 int stop( unsignedcMillies, int *prc);106 int stop(RTMSINTERVAL cMillies, int *prc); 107 107 108 108 /** Destroy the class, stopping the thread if necessary. */
Note:
See TracChangeset
for help on using the changeset viewer.