shorten thread names

so more of the interesting part is shown by epicsThreadShowAll()
This commit is contained in:
Michael Davidsaver
2015-09-09 19:00:22 -04:00
parent 9696b17196
commit f561cb97dc

View File

@@ -87,7 +87,7 @@ inline int sendto(int s, const char *buf, size_t len, int flags, const struct so
void BlockingUDPTransport::start() {
string threadName = "UDP-receive " + inetAddressToString(_bindAddress);
string threadName = "UDP-rx " + inetAddressToString(_bindAddress);
if (IS_LOGGABLE(logLevelTrace))
{
@@ -292,7 +292,7 @@ inline int sendto(int s, const char *buf, size_t len, int flags, const struct so
if (IS_LOGGABLE(logLevelTrace))
{
string threadName = "UDP-receive "+inetAddressToString(_bindAddress);
string threadName = "UDP-rx "+inetAddressToString(_bindAddress);
LOG(logLevelTrace, "Thread '%s' exiting.", threadName.c_str());
}