summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2017-04-22 22:16:06 +0200
committerRobin Gareus <robin@gareus.org>2017-04-22 23:06:22 +0200
commit629e6cbefb8ec2f3fa158879b9720433aaf3e8fd (patch)
treeb4722341adf14e6059dd6ad9eab9a2a90b20b4f4
parent8e038da828c97021cbb04764ca02708bd73a6b5c (diff)
remove unused semaphore
-rw-r--r--libs/ardour/ardour/graph.h1
-rw-r--r--libs/ardour/graph.cc1
2 files changed, 0 insertions, 2 deletions
diff --git a/libs/ardour/ardour/graph.h b/libs/ardour/ardour/graph.h
index 46c9f5e26e..9dfc89398d 100644
--- a/libs/ardour/ardour/graph.h
+++ b/libs/ardour/ardour/graph.h
@@ -105,7 +105,6 @@ private:
/** Signalled to start a run of the graph for a process callback */
PBD::Semaphore _callback_start_sem;
PBD::Semaphore _callback_done_sem;
- PBD::Semaphore _cleanup_sem;
/** The number of processing threads that are asleep */
volatile gint _execution_tokens;
diff --git a/libs/ardour/graph.cc b/libs/ardour/graph.cc
index f69df9beec..8f021a5695 100644
--- a/libs/ardour/graph.cc
+++ b/libs/ardour/graph.cc
@@ -57,7 +57,6 @@ Graph::Graph (Session & session)
, _execution_sem ("graph_execution", 0)
, _callback_start_sem ("graph_start", 0)
, _callback_done_sem ("graph_done", 0)
- , _cleanup_sem ("graph_cleanup", 0)
{
pthread_mutex_init( &_trigger_mutex, NULL);