summaryrefslogtreecommitdiff
path: root/libs/ardour/audioengine.cc
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2020-03-29 14:56:22 +0200
committerRobin Gareus <robin@gareus.org>2020-03-29 14:56:22 +0200
commitc365c6cdb28a4be958cd8405039f6a588d1af21f (patch)
tree69666098246106076876a48066d78849735ec8fc /libs/ardour/audioengine.cc
parentd6a38d545089b8e2d5be54e3f8e9ed497234c2ef (diff)
Set thread-names (libs)
Diffstat (limited to 'libs/ardour/audioengine.cc')
-rw-r--r--libs/ardour/audioengine.cc2
1 files changed, 2 insertions, 0 deletions
diff --git a/libs/ardour/audioengine.cc b/libs/ardour/audioengine.cc
index c525c33fd4..c0350a7802 100644
--- a/libs/ardour/audioengine.cc
+++ b/libs/ardour/audioengine.cc
@@ -598,6 +598,7 @@ void
AudioEngine::do_reset_backend()
{
SessionEvent::create_per_thread_pool (X_("Backend reset processing thread"), 1024);
+ pthread_set_name ("EngineWatchdog");
Glib::Threads::Mutex::Lock guard (_reset_request_lock);
@@ -658,6 +659,7 @@ void
AudioEngine::do_devicelist_update()
{
SessionEvent::create_per_thread_pool (X_("Device list update processing thread"), 512);
+ pthread_set_name ("DeviceList");
Glib::Threads::Mutex::Lock guard (_devicelist_update_lock);