threadId sync problem fixed

This commit is contained in:
Matej Sekoranja
2011-10-06 22:01:25 +02:00
parent 858ba3d7cc
commit 8c9c29a497

View File

@@ -248,9 +248,12 @@ namespace epics {
close(true, false);
}
String threadName = "UDP-receive "+inetAddressToString(_bindAddress);
/*
char threadName[40];
epicsThreadGetName(_threadId, threadName, 40);
LOG(logLevelDebug, "Thread '%s' exiting", threadName);
*/
LOG(logLevelDebug, "Thread '%s' exiting", threadName.c_str());
_shutdownEvent.signal();
}