summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--libs/pbd/pool.cc1
1 files changed, 1 insertions, 0 deletions
diff --git a/libs/pbd/pool.cc b/libs/pbd/pool.cc
index bbe57b7ee2..e31728058e 100644
--- a/libs/pbd/pool.cc
+++ b/libs/pbd/pool.cc
@@ -246,6 +246,7 @@ void*
CrossThreadPool::alloc ()
{
void* ptr;
+ cerr << name() << " has " << pending.read_space() << " pending free entries waiting\n";
while (pending.read (&ptr, 1) == 1) {
cerr << name() << " pushes back a pending free list entry before allocating\n";
free_list.write (&ptr, 1);