dramatic overhaul of automation. too long to explain here. this work is not finished...
[ardour.git] / libs / ardour / buffer_manager.cc
index e3bc2cb97cf2895263cf6e7f011a15706cd9833c..71ff4946f3ff86303825724a452850b3164f8470 100644 (file)
@@ -48,7 +48,7 @@ BufferManager::init (uint32_t size)
                 thread_buffers->write (&ts, 1);
                thread_buffers_list->push_back (ts);
         }
-       cerr << "Initialized thread buffers, readable count now " << thread_buffers->read_space() << endl;
+       // cerr << "Initialized thread buffers, readable count now " << thread_buffers->read_space() << endl;
 
 }
 
@@ -59,7 +59,7 @@ BufferManager::get_thread_buffers ()
         ThreadBuffers* tbp;
 
         if (thread_buffers->read (&tbp, 1) == 1) {
-               cerr << "Got thread buffers, readable count now " << thread_buffers->read_space() << endl;
+               // cerr << "Got thread buffers, readable count now " << thread_buffers->read_space() << endl;
                 return tbp;
         }
 
@@ -71,7 +71,7 @@ BufferManager::put_thread_buffers (ThreadBuffers* tbp)
 {
        Glib::Mutex::Lock em (rb_mutex);
         thread_buffers->write (&tbp, 1);
-       cerr << "Put back thread buffers, readable count now " << thread_buffers->read_space() << endl;
+       // cerr << "Put back thread buffers, readable count now " << thread_buffers->read_space() << endl;
 }
 
 void