summaryrefslogtreecommitdiff
path: root/libs/pbd/pbd
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/pbd/pbd
parent3242f16d445203425230e12f002dd79f16fc1881 (diff)
rename ProcessSemaphore to Semaphore (libs)
Diffstat (limited to 'libs/pbd/pbd')
-rw-r--r--libs/pbd/pbd/semutils.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/libs/pbd/pbd/semutils.h b/libs/pbd/pbd/semutils.h
index 50ac41919c..6c661ab499 100644
--- a/libs/pbd/pbd/semutils.h
+++ b/libs/pbd/pbd/semutils.h
@@ -34,7 +34,7 @@
namespace PBD {
-class LIBPBD_API ProcessSemaphore {
+class LIBPBD_API Semaphore {
private:
#ifdef WINDOWS_SEMAPHORE
HANDLE _sem;
@@ -48,8 +48,8 @@ class LIBPBD_API ProcessSemaphore {
#endif
public:
- ProcessSemaphore (const char* name, int val);
- ~ProcessSemaphore ();
+ Semaphore (const char* name, int val);
+ ~Semaphore ();
#ifdef WINDOWS_SEMAPHORE