summaryrefslogtreecommitdiff
path: root/libs/ardour/session.cc
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2006-10-21 05:12:11 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2006-10-21 05:12:11 +0000
commitfbb9576d4047c03276cc2e1b750465c3b0371c6c (patch)
treefb0ed6838c8565a7cdafcd5da63f41d7b87989a8 /libs/ardour/session.cc
parent273d9fa8d6fc7fb0c16f805933040ed5962ff3d5 (diff)
various fixes related to lifetime management and xfades in particular. lots and lots and lots of debugging output, but sampo can test startup now. shutdown will still crash, but for a new reason.
git-svn-id: svn://localhost/ardour2/trunk@998 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs/ardour/session.cc')
-rw-r--r--libs/ardour/session.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/libs/ardour/session.cc b/libs/ardour/session.cc
index e4ff1941e0..66cb1f89fa 100644
--- a/libs/ardour/session.cc
+++ b/libs/ardour/session.cc
@@ -469,8 +469,9 @@ Session::~Session ()
tmp = i;
++tmp;
- cerr << "dropping refs on an audio region (" << i->second->name() << ") with UC = " << i->second.use_count() << endl;
+ cerr << "dropping refs on an audio region (" << i->second->name() << " @ " << i->second << ") with UC = " << i->second.use_count() << endl;
i->second->drop_references ();
+ cerr << "AFTER: UC = " << i->second.use_count() << endl;
i = tmp;
}