Changeset 52647 in vbox
- Timestamp:
- Sep 8, 2014 2:17:47 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/x11/VBoxClient/main.cpp
r52586 r52647 378 378 if (g_szPidFile[0]) 379 379 rc = VbglR3PidFile(g_szPidFile, &g_hPidFile); 380 if (rc == VERR_FILE_LOCK_VIOLATION) /* Already running. */ 381 return 0; 380 382 if (RT_FAILURE(rc)) 381 383 VBClFatalError(("Creating pid-file: %Rrc\n", rc)); 382 384 /* Set signal handlers to clean up on exit. */ 383 385 vboxClientSetSignalHandlers(); 386 #ifndef VBOXCLIENT_WITHOUT_X11 384 387 /* Set an X11 error handler, so that we don't die when we get unavoidable 385 388 * errors. */ … … 388 391 * fatal errors. */ 389 392 XSetIOErrorHandler(vboxClientXLibIOErrorHandler); 393 #endif 390 394 rc = (*g_pService)->init(g_pService); 391 395 if (RT_FAILURE(rc))
Note:
See TracChangeset
for help on using the changeset viewer.