summaryrefslogtreecommitdiff
path: root/libs/ardour/port.cc
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2010-11-27 17:42:09 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2010-11-27 17:42:09 +0000
commit979a61eb3f1729affe1b0ab4201749b5cde11f68 (patch)
tree9d65188b65ab2d1999b0bfe14315fd36575b333f /libs/ardour/port.cc
parentf3a833e38e669d3194652ddba40fa10377ff750a (diff)
remove (or attempt to remove) requirement for holding process lock when changing connections
git-svn-id: svn://localhost/ardour2/branches/3.0@8110 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs/ardour/port.cc')
-rw-r--r--libs/ardour/port.cc4
1 files changed, 0 insertions, 4 deletions
diff --git a/libs/ardour/port.cc b/libs/ardour/port.cc
index 67e78ac528..936cb976a5 100644
--- a/libs/ardour/port.cc
+++ b/libs/ardour/port.cc
@@ -122,8 +122,6 @@ Port::get_connections (std::vector<std::string> & c) const
int
Port::connect (std::string const & other)
{
- /* caller must hold process lock */
-
std::string const other_shrt = _engine->make_port_name_non_relative (other);
std::string const this_shrt = _engine->make_port_name_non_relative (_name);
@@ -149,8 +147,6 @@ Port::connect (std::string const & other)
int
Port::disconnect (std::string const & other)
{
- /* caller must hold process lock */
-
std::string const other_shrt = _engine->make_port_name_non_relative (other);
std::string const this_shrt = _engine->make_port_name_non_relative (_name);