summaryrefslogtreecommitdiff
path: root/libs/ardour/graph.cc
diff options
context:
space:
mode:
authorCarl Hetherington <carl@carlh.net>2010-11-19 14:12:41 +0000
committerCarl Hetherington <carl@carlh.net>2010-11-19 14:12:41 +0000
commit3aa8ff4a5e3f2c323bf35f3734a8d1e55be3c922 (patch)
treeca4cf1b3a2be2bfd7809713cd2da8a719afeb4f9 /libs/ardour/graph.cc
parentd8ec9bbea79bc9cefa3e042aae8fd585f35df92b (diff)
Fix typo causing CPU burn.
git-svn-id: svn://localhost/ardour2/branches/3.0@8057 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs/ardour/graph.cc')
-rw-r--r--libs/ardour/graph.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/ardour/graph.cc b/libs/ardour/graph.cc
index d98c3619dc..a24fcad8ce 100644
--- a/libs/ardour/graph.cc
+++ b/libs/ardour/graph.cc
@@ -336,7 +336,7 @@ Graph::run_one()
_execution_tokens += 1;
pthread_mutex_unlock (&_trigger_mutex);
DEBUG_TRACE (DEBUG::ProcessThreads, string_compose ("%1 goes to sleep\n", pthread_self()));
- _execution_sem.signal ();
+ _execution_sem.wait ();
if (_quit_threads)
return true;
DEBUG_TRACE (DEBUG::ProcessThreads, string_compose ("%1 is awake\n", pthread_self()));