diff options
author | Bent Bisballe Nyeng <deva@aasimon.org> | 2013-10-06 13:10:00 +0200 |
---|---|---|
committer | Bent Bisballe Nyeng <deva@aasimon.org> | 2013-10-06 13:10:00 +0200 |
commit | 88a906395ba7d33ae563e70d8b94c855e3b5a573 (patch) | |
tree | b0fa632b4c59d276b292407f79ee07aa9ef8dab8 /src/semaphore.h | |
parent | 5727436afe5a8b1b60d99863cfc939ee50d4c17e (diff) |
Refactoring of AudioFile loading and message passing from engine to gui and vice versa.
Diffstat (limited to 'src/semaphore.h')
-rw-r--r-- | src/semaphore.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/semaphore.h b/src/semaphore.h index 7f8a6ff..7e39f5a 100644 --- a/src/semaphore.h +++ b/src/semaphore.h @@ -31,7 +31,7 @@ struct semaphore_private_t; class Semaphore { public: - Semaphore(); + Semaphore(const char *name = ""); ~Semaphore(); void post(); @@ -39,6 +39,7 @@ public: private: struct semaphore_private_t *prv; + const char *name; }; #endif/*__PRACRO_SEMAPHORE_H__*/ |