Changeset 26505 in vbox for trunk/src/VBox/Additions/x11/VBoxClient
- Timestamp:
- Feb 14, 2010 9:17:44 AM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 57676
- Location:
- trunk/src/VBox/Additions/x11/VBoxClient
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/x11/VBoxClient/display.cpp
r26163 r26505 149 149 if ((cx != cx0) || (cy != cy0) || RT_FAILURE(rc2)) 150 150 { 151 152 153 154 155 156 157 151 /* If we are not stopping, sleep for a bit to avoid using up 152 too much CPU while retrying. */ 153 if (RT_FAILURE(rc2)) 154 RTThreadYield(); 155 else 156 { 157 system("VBoxRandR"); 158 158 cx0 = cx; 159 159 cy0 = cy; 160 160 } 161 161 } 162 162 } -
trunk/src/VBox/Additions/x11/VBoxClient/hostversion.cpp
r24607 r26505 66 66 rc = VERR_INVALID_HANDLE; 67 67 } 68 69 68 else 69 rc = VINF_SUCCESS; 70 70 } 71 71 if (RT_SUCCESS(rc)) … … 117 117 } 118 118 if (dbus_error_is_set(&err)) 119 119 dbus_error_free(&err); 120 120 } 121 121 if (msg != NULL)
Note:
See TracChangeset
for help on using the changeset viewer.