summaryrefslogtreecommitdiff
path: root/libs/ardour/butler.cc
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2009-12-31 19:49:22 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2009-12-31 19:49:22 +0000
commit8ae20c0c4d1353afe2a42f17eb14270882a89174 (patch)
treeb1edbdd71ee33552e85c36b09174f1092da6c38f /libs/ardour/butler.cc
parentc6d51242691b593d3037784c993d101409c32c13 (diff)
stop metering thread as we disconnect a session from audioengine; explicitly drop connections early in ~Route so that we don't still have signals being handled while we destruct; fix up some valgrind warnings
git-svn-id: svn://localhost/ardour2/branches/3.0@6425 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs/ardour/butler.cc')
-rw-r--r--libs/ardour/butler.cc1
1 files changed, 1 insertions, 0 deletions
diff --git a/libs/ardour/butler.cc b/libs/ardour/butler.cc
index 25d8d6c148..addf6ddf27 100644
--- a/libs/ardour/butler.cc
+++ b/libs/ardour/butler.cc
@@ -115,6 +115,7 @@ void *
Butler::_thread_work (void* arg)
{
SessionEvent::create_per_thread_pool ("butler events", 64);
+ pthread_set_name (X_("butler"));
return ((Butler *) arg)->thread_work ();
}