13
0

remove unused semaphore

This commit is contained in:
Robin Gareus 2017-04-22 22:16:06 +02:00
parent 8e038da828
commit 629e6cbefb
2 changed files with 0 additions and 2 deletions

View File

@ -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;

View File

@ -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);