summaryrefslogtreecommitdiff
path: root/libs/ardour/io.cc
diff options
context:
space:
mode:
Diffstat (limited to 'libs/ardour/io.cc')
-rw-r--r--libs/ardour/io.cc7
1 files changed, 0 insertions, 7 deletions
diff --git a/libs/ardour/io.cc b/libs/ardour/io.cc
index 0609726b23..ebed41fd64 100644
--- a/libs/ardour/io.cc
+++ b/libs/ardour/io.cc
@@ -159,12 +159,9 @@ IO::check_bundles (std::vector<UserBundleInfo*>& list, const PortSet& ports)
int
IO::disconnect (Port* our_port, string other_port, void* src)
{
- assert (!AudioEngine::instance()->process_lock().trylock());
-
if (other_port.length() == 0 || our_port == 0) {
return 0;
}
-
{
Glib::Mutex::Lock lm (io_lock);
@@ -196,8 +193,6 @@ IO::disconnect (Port* our_port, string other_port, void* src)
int
IO::connect (Port* our_port, string other_port, void* src)
{
- assert (!AudioEngine::instance()->process_lock().trylock());
-
if (other_port.length() == 0 || our_port == 0) {
return 0;
}
@@ -343,8 +338,6 @@ IO::add_port (string destination, void* src, DataType type)
int
IO::disconnect (void* src)
{
- BLOCK_PROCESS_CALLBACK ();
-
{
Glib::Mutex::Lock lm (io_lock);