summaryrefslogtreecommitdiff
path: root/libs/ardour/ardour/graph.h
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2015-12-02 20:18:48 +0100
committerRobin Gareus <robin@gareus.org>2015-12-02 20:18:48 +0100
commitc93f0b77bf149e6d361e89e84b85f4b7e99ac643 (patch)
tree5a9e68a326c9a16feb65ddbb4cd6e2233b4ba370 /libs/ardour/ardour/graph.h
parent3242f16d445203425230e12f002dd79f16fc1881 (diff)
rename ProcessSemaphore to Semaphore (libs)
Diffstat (limited to 'libs/ardour/ardour/graph.h')
-rw-r--r--libs/ardour/ardour/graph.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/libs/ardour/ardour/graph.h b/libs/ardour/ardour/graph.h
index 2d4a0adb30..239f9ad1ab 100644
--- a/libs/ardour/ardour/graph.h
+++ b/libs/ardour/ardour/graph.h
@@ -101,12 +101,12 @@ private:
std::vector<GraphNode *> _trigger_queue;
pthread_mutex_t _trigger_mutex;
- PBD::ProcessSemaphore _execution_sem;
+ PBD::Semaphore _execution_sem;
/** Signalled to start a run of the graph for a process callback */
- PBD::ProcessSemaphore _callback_start_sem;
- PBD::ProcessSemaphore _callback_done_sem;
- PBD::ProcessSemaphore _cleanup_sem;
+ 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;