From a7d465fcb7254ad4acdf25208976802553c0f6a5 Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Tue, 4 Jan 2011 21:25:52 +0000 Subject: [PATCH] more pool allocation debugging for oofus git-svn-id: svn://localhost/ardour2/branches/3.0@8439 d708f5d6-7413-0410-9779-e7cbd77b26cf --- libs/pbd/pool.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/libs/pbd/pool.cc b/libs/pbd/pool.cc index aac98a2c15..bbe57b7ee2 100644 --- a/libs/pbd/pool.cc +++ b/libs/pbd/pool.cc @@ -247,6 +247,7 @@ CrossThreadPool::alloc () { void* ptr; while (pending.read (&ptr, 1) == 1) { + cerr << name() << " pushes back a pending free list entry before allocating\n"; free_list.write (&ptr, 1); } return Pool::alloc ();