Changeset 57416 in vbox for trunk/src/VBox/Additions/x11/VBoxClient
- Timestamp:
- Aug 18, 2015 11:19:28 AM (9 years ago)
- Location:
- trunk/src/VBox/Additions/x11/VBoxClient
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/x11/VBoxClient/display.cpp
r57357 r57416 86 86 87 87 /** Thread to monitor and react to X server VT switches and exits. */ 88 static int pfnMonitorThread(RTTHREAD self, void *pvUser)88 static DECLCALLBACK(int) vboxClientMonitorThread(RTTHREAD self, void *pvUser) 89 89 { 90 90 struct DISPLAYSTATE *pState = (struct DISPLAYSTATE *)pvUser; … … 122 122 int rc; 123 123 124 rc = RTThreadCreate(NULL, pfnMonitorThread, (void *)pState, 0, RTTHREADTYPE_INFREQUENT_POLLER, 0, "VT_MONITOR");124 rc = RTThreadCreate(NULL, vboxClientMonitorThread, (void *)pState, 0, RTTHREADTYPE_INFREQUENT_POLLER, 0, "VT_MONITOR"); 125 125 if (rc != VINF_SUCCESS) 126 126 VBClFatalError(("Failed to start the VT monitor thread, rc=%Rrc\n", rc)); -
trunk/src/VBox/Additions/x11/VBoxClient/draganddrop.cpp
r57357 r57416 599 599 600 600 int dragAndDropInit(void); 601 static inthgcmEventThread(RTTHREAD hThread, void *pvUser);602 static intx11EventThread(RTTHREAD hThread, void *pvUser);601 static DECLCALLBACK(int) hgcmEventThread(RTTHREAD hThread, void *pvUser); 602 static DECLCALLBACK(int) x11EventThread(RTTHREAD hThread, void *pvUser); 603 603 604 604 /* Private member vars */ … … 3170 3170 */ 3171 3171 /* static */ 3172 intDragAndDropService::hgcmEventThread(RTTHREAD hThread, void *pvUser)3172 DECLCALLBACK(int) DragAndDropService::hgcmEventThread(RTTHREAD hThread, void *pvUser) 3173 3173 { 3174 3174 AssertPtrReturn(pvUser, VERR_INVALID_PARAMETER); … … 3240 3240 */ 3241 3241 /* static */ 3242 intDragAndDropService::x11EventThread(RTTHREAD hThread, void *pvUser)3242 DECLCALLBACK(int) DragAndDropService::x11EventThread(RTTHREAD hThread, void *pvUser) 3243 3243 { 3244 3244 AssertPtrReturn(pvUser, VERR_INVALID_PARAMETER);
Note:
See TracChangeset
for help on using the changeset viewer.