From: Michael Jumper Date: Sat, 19 Mar 2011 07:59:14 +0000 (-0700) Subject: Detach main thread. X-Git-Url: http://git.alex.org.uk Detach main thread. --- diff --git a/src/daemon.c b/src/daemon.c index 3029fc5..4364eee 100644 --- a/src/daemon.c +++ b/src/daemon.c @@ -265,6 +265,8 @@ int main(int argc, char* argv[]) { GUAC_LOG_ERROR("Could not create client thread: %s", lasterror()); return 3; } + + pthread_detach(thread); #elif __MINGW32__ if (_beginthread(start_client_thread, 0, (void*) data) == -1L) { GUAC_LOG_ERROR("Could not create client thread: %s", lasterror());