Use PBD::pthread_name in debug output
authorPaul Davis <paul@linuxaudiosystems.com>
Thu, 11 Jul 2013 18:58:00 +0000 (14:58 -0400)
committerPaul Davis <paul@linuxaudiosystems.com>
Thu, 11 Jul 2013 18:58:00 +0000 (14:58 -0400)
libs/ardour/session_events.cc

index 6c828ac6f0d490f0217c69171aa02d833974595e..19034da24767b79f36748f567690d4d7aa0928de 100644 (file)
@@ -23,6 +23,7 @@
 #include "pbd/error.h"
 #include "pbd/enumwriter.h"
 #include "pbd/stacktrace.h"
+#include "pbd/pthread_utils.h"
 
 #include "ardour/debug.h"
 #include "ardour/session_event.h"
@@ -56,7 +57,7 @@ SessionEvent::operator new (size_t)
 {
        CrossThreadPool* p = pool->per_thread_pool ();
        SessionEvent* ev = static_cast<SessionEvent*> (p->alloc ());
-       DEBUG_TRACE (DEBUG::SessionEvents, string_compose ("%1 Allocating SessionEvent from %2 ev @ %3\n", pthread_self(), p->name(), ev));
+       DEBUG_TRACE (DEBUG::SessionEvents, string_compose ("%1 Allocating SessionEvent from %2 ev @ %3\n", pthread_name(), p->name(), ev));
 #ifndef NDEBUG
        if (DEBUG::SessionEvents & PBD::debug_bits) {
                stacktrace (cerr, 40);
@@ -74,7 +75,7 @@ SessionEvent::operator delete (void *ptr, size_t /*size*/)
 
        DEBUG_TRACE (DEBUG::SessionEvents, string_compose (
                             "%1 Deleting SessionEvent @ %2 ev thread pool = %3 ev pool = %4\n",
-                            pthread_self(), ev, p->name(), ev->own_pool->name()
+                            pthread_name(), ev, p->name(), ev->own_pool->name()
                             ));
 
 #ifndef NDEBUG