diff options
author | David Robillard <d@drobilla.net> | 2007-01-22 04:07:53 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2007-01-22 04:07:53 +0000 |
commit | 6fc1fa0d3bec4b82cb3af4c4e887241087899e7e (patch) | |
tree | 642326c791c1cac6390b8cc10f6b5fac52e0f36e /src/libs/client/ThreadedSigClientInterface.h | |
parent | 6a03dfaf79aa0713df17b03880aaedb3fa8984eb (diff) | |
download | ingen-6fc1fa0d3bec4b82cb3af4c4e887241087899e7e.tar.gz ingen-6fc1fa0d3bec4b82cb3af4c4e887241087899e7e.tar.bz2 ingen-6fc1fa0d3bec4b82cb3af4c4e887241087899e7e.zip |
Added atomic int/pointer classes to Raul.
Added multi-writer queue to Raul.
Renamed Queue SRSWQueue (single-reader single-writer).
Updated patchage/ingen for Raul changes.
git-svn-id: http://svn.drobilla.net/lad/ingen@264 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/libs/client/ThreadedSigClientInterface.h')
-rw-r--r-- | src/libs/client/ThreadedSigClientInterface.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/libs/client/ThreadedSigClientInterface.h b/src/libs/client/ThreadedSigClientInterface.h index e286fc95..0a2b8652 100644 --- a/src/libs/client/ThreadedSigClientInterface.h +++ b/src/libs/client/ThreadedSigClientInterface.h @@ -22,7 +22,7 @@ #include <sigc++/sigc++.h> #include "interface/ClientInterface.h" #include "SigClientInterface.h" -#include "raul/Queue.h" +#include "raul/SRSWQueue.h" #include "raul/Atom.h" using std::string; @@ -138,8 +138,8 @@ private: bool _enabled; - Queue<Closure> _sigs; - uint32_t _num_plugins; + SRSWQueue<Closure> _sigs; + uint32_t _num_plugins; sigc::slot<void> bundle_begin_slot; sigc::slot<void> bundle_end_slot; |