mirror of
https://github.com/twisterarmy/twister-core.git
synced 2025-01-23 13:04:17 +00:00
Bugfix: report error creating ThreadSocketHandler thread just like the rest
This commit is contained in:
parent
c7eb151ad0
commit
65ba3e2f50
@ -1713,7 +1713,8 @@ void StartNode(void* parg)
|
|||||||
printf("Error: CreateThread(ThreadIRCSeed) failed\n");
|
printf("Error: CreateThread(ThreadIRCSeed) failed\n");
|
||||||
|
|
||||||
// Send and receive from sockets, accept connections
|
// Send and receive from sockets, accept connections
|
||||||
CreateThread(ThreadSocketHandler, NULL);
|
if (!CreateThread(ThreadSocketHandler, NULL))
|
||||||
|
printf("Error: CreateThread(ThreadSocketHandler) failed\n");
|
||||||
|
|
||||||
// Initiate outbound connections
|
// Initiate outbound connections
|
||||||
if (!CreateThread(ThreadOpenConnections, NULL))
|
if (!CreateThread(ThreadOpenConnections, NULL))
|
||||||
|
Loading…
x
Reference in New Issue
Block a user