mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-08 15:54:57 +01:00
remove various debugging output
git-svn-id: svn://localhost/ardour2/branches/3.0@12070 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
parent
33140f3267
commit
a9d77d1a70
4 changed files with 0 additions and 6 deletions
|
|
@ -143,8 +143,6 @@ MidiControlUI::reset_ports ()
|
||||||
if ((fd = (*i)->selectable ()) >= 0) {
|
if ((fd = (*i)->selectable ()) >= 0) {
|
||||||
Glib::RefPtr<IOSource> psrc = IOSource::create (fd, IO_IN|IO_HUP|IO_ERR);
|
Glib::RefPtr<IOSource> psrc = IOSource::create (fd, IO_IN|IO_HUP|IO_ERR);
|
||||||
|
|
||||||
cerr << "MIDI UI listening to " << (*i)->name() << endl;
|
|
||||||
|
|
||||||
psrc->connect (sigc::bind (sigc::mem_fun (this, &MidiControlUI::midi_input_handler), *i));
|
psrc->connect (sigc::bind (sigc::mem_fun (this, &MidiControlUI::midi_input_handler), *i));
|
||||||
psrc->attach (_main_loop->get_context());
|
psrc->attach (_main_loop->get_context());
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -74,9 +74,7 @@ BaseUI::main_thread ()
|
||||||
{
|
{
|
||||||
set_event_loop_for_thread (this);
|
set_event_loop_for_thread (this);
|
||||||
thread_init ();
|
thread_init ();
|
||||||
std::cerr << pthread_self() << ' ' << _name << " running event loop\n";
|
|
||||||
_main_loop->run ();
|
_main_loop->run ();
|
||||||
std::cerr << pthread_self() << ' ' << _name << " event loop finished\n";
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
|
|
|
||||||
|
|
@ -81,7 +81,6 @@ RefPtr<IOSource>
|
||||||
CrossThreadChannel::ios ()
|
CrossThreadChannel::ios ()
|
||||||
{
|
{
|
||||||
if (!_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)));
|
_ios = new RefPtr<IOSource> (IOSource::create (fds[0], IOCondition(IO_IN|IO_PRI|IO_ERR|IO_HUP|IO_NVAL)));
|
||||||
}
|
}
|
||||||
return *_ios;
|
return *_ios;
|
||||||
|
|
|
||||||
|
|
@ -424,7 +424,6 @@ Surface::handle_midi_sysex (MIDI::Parser &, MIDI::byte * raw_bytes, size_t count
|
||||||
} else {
|
} else {
|
||||||
if (!_active) {
|
if (!_active) {
|
||||||
_active = true;
|
_active = true;
|
||||||
std::cerr << "Surface " << _number << " Now active!\n";
|
|
||||||
zero_controls ();
|
zero_controls ();
|
||||||
for (Strips::iterator s = strips.begin(); s != strips.end(); ++s) {
|
for (Strips::iterator s = strips.begin(); s != strips.end(); ++s) {
|
||||||
(*s)->notify_all ();
|
(*s)->notify_all ();
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue