Changeset 48487 in vbox
- Timestamp:
- Sep 16, 2013 3:01:16 PM (11 years ago)
- Location:
- trunk/src/VBox
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/common/crOpenGL/load.c
r48057 r48487 982 982 crNetFreeConnection(ns.conn); 983 983 } 984 #if 0 && defined(CR_NEWWINTRACK)985 {986 Status st = XInitThreads();987 if (st==0)988 {989 crWarning("XInitThreads returned %i", (int)st);990 }991 }992 #endif993 984 } 994 985 #endif -
trunk/src/VBox/Additions/x11/VBoxClient/draganddrop.cpp
r46377 r48487 1548 1548 int rc = VINF_SUCCESS; 1549 1549 LogRelFlowFunc(("\n")); 1550 1551 /* We need to initialize XLib with thread support, otherwise our1552 * simultaneously access to the display makes trouble (has to be called1553 * before any usage of XLib). */1554 if (!XInitThreads())1555 AssertMsgFailedReturn(("Failed to initialize thread-safe XLib.\n"), VERR_GENERAL_FAILURE);1556 1550 1557 1551 do -
trunk/src/VBox/Additions/x11/VBoxClient/seamless.cpp
r44528 r48487 34 34 virtual int run(bool fDaemonised /* = false */) 35 35 { 36 /* Initialise threading in X11 and in Xt. */37 if (!XInitThreads())38 {39 LogRel(("VBoxClient: error initialising threads in X11, exiting.\n"));40 return VERR_NOT_SUPPORTED;41 }42 36 int rc = mSeamless.init(); 43 37 if (RT_FAILURE(rc)) -
trunk/src/VBox/HostServices/SharedOpenGL/render/renderspu_glx.c
r48291 r48487 646 646 } 647 647 648 /* enable multi-threading */649 XInitThreads();650 651 648 /* setup communication display connection */ 652 649 dpyName = renderspuGetDisplayName();
Note:
See TracChangeset
for help on using the changeset viewer.