From 216eef86b39515911234d0f1d3bb23334e8d29f2 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Mon, 22 Jan 2007 04:07:53 +0000 Subject: 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/patchage@264 a436a847-0d15-0410-975c-d299462d15a1 --- src/JackDriver.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/JackDriver.h') diff --git a/src/JackDriver.h b/src/JackDriver.h index 7acbad8..5f5777b 100644 --- a/src/JackDriver.h +++ b/src/JackDriver.h @@ -22,7 +22,7 @@ #include #include #include -#include +#include #include "Driver.h" class Patchage; class PatchageEvent; @@ -50,7 +50,7 @@ public: bool is_attached() const { return (m_client != NULL); } bool is_realtime() const { return m_client && jack_is_realtime(m_client); } - Queue& events() { return m_events; } + SRSWQueue& events() { return m_events; } void refresh(); @@ -106,7 +106,7 @@ private: Patchage* m_app; jack_client_t* m_client; - Queue m_events; + SRSWQueue m_events; bool m_is_activated; jack_position_t m_last_pos; -- cgit v1.2.1