From 116953b62ea14a6e94a3f0bc8bd1b618f276cf4d Mon Sep 17 00:00:00 2001 From: Bryan Biedenkapp Date: Mon, 4 Nov 2024 16:21:00 -0500 Subject: [PATCH] fix thread names; --- src/fne/HostFNE.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/fne/HostFNE.cpp b/src/fne/HostFNE.cpp index 16d55d07..266238eb 100644 --- a/src/fne/HostFNE.cpp +++ b/src/fne/HostFNE.cpp @@ -604,7 +604,7 @@ void* HostFNE::threadMasterNetwork(void* arg) ::pthread_detach(th->thread); #endif // defined(_WIN32) - std::string threadName("fne:network-loop"); + std::string threadName("fne:net"); HostFNE* fne = static_cast(th->obj); if (fne == nullptr) { g_killed = true; @@ -647,7 +647,7 @@ void* HostFNE::threadDiagNetwork(void* arg) ::pthread_detach(th->thread); #endif // defined(_WIN32) - std::string threadName("fne:diag-network-loop"); + std::string threadName("fne:diag-net"); HostFNE* fne = static_cast(th->obj); if (fne == nullptr) { g_killed = true; @@ -838,7 +838,7 @@ void* HostFNE::threadVirtualNetworking(void* arg) if (th != nullptr) { ::pthread_detach(th->thread); - std::string threadName("fne:vtun-net-rx"); + std::string threadName("fne:vt-net-rx"); HostFNE* fne = static_cast(th->obj); if (fne == nullptr) { g_killed = true; @@ -902,7 +902,7 @@ void* HostFNE::threadVirtualNetworkingClock(void* arg) if (th != nullptr) { ::pthread_detach(th->thread); - std::string threadName("fne:vtun-clock"); + std::string threadName("fne:vt-clock"); HostFNE* fne = static_cast(th->obj); if (fne == nullptr) { g_killed = true;