From 4988d75f19e81c58e2cfdc068c5638b95ae9e314 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sat, 28 Nov 2020 10:29:50 +0100 Subject: Remove Queue and use std::queue in JackDriver Jack notification handlers do not need to be realtime safe. --- src/JackDriver.cpp | 2 -- 1 file changed, 2 deletions(-) (limited to 'src/JackDriver.cpp') diff --git a/src/JackDriver.cpp b/src/JackDriver.cpp index 2807791..e20613c 100644 --- a/src/JackDriver.cpp +++ b/src/JackDriver.cpp @@ -22,7 +22,6 @@ #include "PatchageCanvas.hpp" #include "PatchageEvent.hpp" #include "PatchageModule.hpp" -#include "Queue.hpp" #include "patchage_config.h" #ifdef HAVE_JACK_METADATA @@ -46,7 +45,6 @@ JackDriver::JackDriver(Patchage* app, ILog& log) : _app(app) , _log(log) , _client(nullptr) - , _events(128) , _last_pos{} , _buffer_size(0) , _xruns(0) -- cgit v1.2.1