summaryrefslogtreecommitdiff
path: root/libs/pbd
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2011-01-04 21:25:52 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2011-01-04 21:25:52 +0000
commita7d465fcb7254ad4acdf25208976802553c0f6a5 (patch)
tree56620eb0ad9725e3cf4f1c4456ca36ca4edb9f32 /libs/pbd
parentb33e8deffb1371cc7d1a94804fafaeea1b4d6ba5 (diff)
more pool allocation debugging for oofus
git-svn-id: svn://localhost/ardour2/branches/3.0@8439 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs/pbd')
-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 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 ();