From 6efc1522ed072d6b7ecbdefa878a5d2b115ca650 Mon Sep 17 00:00:00 2001 From: GZharun Date: Fri, 13 Feb 2015 17:58:48 +0200 Subject: [PATCH] [Summary] Removed debug output --- libs/pbd/pool.cc | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/libs/pbd/pool.cc b/libs/pbd/pool.cc index 28981c5dd2..8f6b030a4b 100644 --- a/libs/pbd/pool.cc +++ b/libs/pbd/pool.cc @@ -25,7 +25,7 @@ #include "pbd/pool.h" #include "pbd/pthread_utils.h" -#include "pbd/stacktrace.h" + #include "pbd/error.h" #include "pbd/debug.h" #include "pbd/compose.h" @@ -184,8 +184,7 @@ PerThreadPool::per_thread_pool () { CrossThreadPool* p = _key.get(); if (!p) { - PBD::stacktrace(std::cout, 100); - fatal << "programming error: no per-thread pool \"" << _name << "\" for thread " << pthread_name() << endmsg; + fatal << "programming error: no per-thread pool \"" << _name << "\" for thread " << pthread_name() << endmsg; /*NOTREACHED*/ } return p;