Changeset 15759 in vbox
- Timestamp:
- Dec 25, 2008 3:57:37 PM (16 years ago)
- Location:
- trunk/src/VBox
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/GuestHost/OpenGL/util/net.c
r15709 r15759 293 293 void crNetNewClient( CRConnection *conn, CRNetServer *ns ) 294 294 { 295 /* 295 296 unsigned int len = sizeof(CRMessageNewClient); 296 297 CRMessageNewClient msg; … … 304 305 305 306 crNetSend( conn, NULL, &msg, len ); 307 */ 308 306 309 crNetServerConnect( ns ); 307 310 } -
trunk/src/VBox/GuestHost/OpenGL/util/vboxhgcm.c
r15707 r15759 902 902 void crVBoxHGCMTearDown(void) 903 903 { 904 int32_t i ;904 int32_t i, cCons; 905 905 906 906 if (!g_crvboxhgcm.initialized) return; 907 907 908 for (i=0; i<g_crvboxhgcm.num_conns; i++) 909 { 910 crNetDisconnect(g_crvboxhgcm.conns[i]); 911 } 908 /* Connection count would be changed while we disconnect link, also the array of connections would be shifted*/ 909 cCons = g_crvboxhgcm.num_conns; 910 for (i=0; i<cCons; i++) 911 { 912 crNetDisconnect(g_crvboxhgcm.conns[0]); 913 } 914 CRASSERT(0==g_crvboxhgcm.num_conns); 912 915 913 916 #ifdef CHROMIUM_THREADSAFE -
trunk/src/VBox/HostServices/SharedOpenGL/crserverlib/get_sizes.py
r15758 r15759 360 360 return temp->num_values; 361 361 } 362 cr Error( "Invalid pname to __numValues: 0x%x\\n", (int) pname );362 crWarning( "Invalid pname to __numValues: 0x%x\\n", (int) pname ); 363 363 return 0; 364 364 } -
trunk/src/VBox/HostServices/SharedOpenGL/crserverlib/server_stream.c
r15758 r15759 544 544 crServerRecv( CRConnection *conn, CRMessage *msg, unsigned int len ) 545 545 { 546 CRMessage *pRealMsg; 546 547 (void) len; 547 548 548 switch( msg->header.type ) 549 pRealMsg = (msg->header.type!=CR_MESSAGE_REDIR_PTR) ? msg : (CRMessage*) msg->redirptr.pMessage; 550 551 switch( pRealMsg->header.type ) 549 552 { 550 553 /* Called when using multiple threads */
Note:
See TracChangeset
for help on using the changeset viewer.