From: Pieter Wuille Date: Mon, 19 Sep 2011 11:08:22 +0000 (+0200) Subject: SocketHandler thread can be detached X-Git-Tag: v0.4.0-unstable~227^2~4^2 X-Git-Url: https://git.novaco.in/?p=novacoin.git;a=commitdiff_plain;h=88367a5fb85757aefea9bd0e9770d91c8c6e394d SocketHandler thread can be detached --- diff --git a/src/net.cpp b/src/net.cpp index 509d890..2e257a6 100644 --- a/src/net.cpp +++ b/src/net.cpp @@ -1713,7 +1713,7 @@ void StartNode(void* parg) printf("Error: CreateThread(ThreadIRCSeed) failed\n"); // Send and receive from sockets, accept connections - CreateThread(ThreadSocketHandler, NULL, true); + CreateThread(ThreadSocketHandler, NULL); // Initiate outbound connections if (!CreateThread(ThreadOpenConnections, NULL))