summaryrefslogtreecommitdiff
path: root/libs/pbd
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2012-04-24 02:35:33 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2012-04-24 02:35:33 +0000
commita9d77d1a70bda53c288d56dd1a2ca4f70dc09dea (patch)
tree7d6d29f6d8a46b41ca047d4d4f4248d6bfb3157b /libs/pbd
parent33140f32671576a285d62f529447f941f96313fc (diff)
remove various debugging output
git-svn-id: svn://localhost/ardour2/branches/3.0@12070 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs/pbd')
-rw-r--r--libs/pbd/base_ui.cc2
-rw-r--r--libs/pbd/crossthread.cc1
2 files changed, 0 insertions, 3 deletions
diff --git a/libs/pbd/base_ui.cc b/libs/pbd/base_ui.cc
index e3b34a6df2..10f27df3bf 100644
--- a/libs/pbd/base_ui.cc
+++ b/libs/pbd/base_ui.cc
@@ -74,9 +74,7 @@ BaseUI::main_thread ()
{
set_event_loop_for_thread (this);
thread_init ();
- std::cerr << pthread_self() << ' ' << _name << " running event loop\n";
_main_loop->run ();
- std::cerr << pthread_self() << ' ' << _name << " event loop finished\n";
}
void
diff --git a/libs/pbd/crossthread.cc b/libs/pbd/crossthread.cc
index 07a732954b..553c8d52f3 100644
--- a/libs/pbd/crossthread.cc
+++ b/libs/pbd/crossthread.cc
@@ -81,7 +81,6 @@ RefPtr<IOSource>
CrossThreadChannel::ios ()
{
if (!_ios) {
- std::cerr << "New x-channel fd " << fds[0] << std::endl;
_ios = new RefPtr<IOSource> (IOSource::create (fds[0], IOCondition(IO_IN|IO_PRI|IO_ERR|IO_HUP|IO_NVAL)));
}
return *_ios;