13
0

Fix deadlock on closing a send IO dialogue.

git-svn-id: svn://localhost/ardour2/branches/3.0@8240 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Carl Hetherington 2010-12-10 22:46:53 +00:00
parent 86ac707573
commit 1f0ac78bc4
2 changed files with 2 additions and 2 deletions

View File

@ -247,6 +247,7 @@ Processor::set_state (const XMLNode& node, int version)
return 0;
}
/** Caller must hold process lock */
bool
Processor::configure_io (ChanCount in, ChanCount out)
{

View File

@ -217,7 +217,7 @@ Send::can_support_io_configuration (const ChanCount& in, ChanCount& out) const
return true;
}
/** Caller must not hold process lock */
/** Caller must hold process lock */
bool
Send::configure_io (ChanCount in, ChanCount out)
{
@ -226,7 +226,6 @@ Send::configure_io (ChanCount in, ChanCount out)
}
if (_output) {
Glib::Mutex::Lock lm (AudioEngine::instance()->process_lock());
_output->ensure_io (out, false, 0);
}