From 769fd5a2c60ef39f0af68664b35c99f90b8d715b Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sat, 20 Aug 2011 20:59:48 +0000 Subject: Fix crash when sending port notifications (fix #741). Use a simpler system for port change notifications (abusing Event, which is virtual and thus can't be ringbuffered safely, was the cause of this crash). git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@3438 a436a847-0d15-0410-975c-d299462d15a1 --- src/server/internals/Controller.cpp | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) (limited to 'src/server/internals') diff --git a/src/server/internals/Controller.cpp b/src/server/internals/Controller.cpp index 3d477de6..bdf8e607 100644 --- a/src/server/internals/Controller.cpp +++ b/src/server/internals/Controller.cpp @@ -19,14 +19,15 @@ #include "raul/midi_events.h" #include "shared/LV2URIMap.hpp" #include "internals/Controller.hpp" -#include "PostProcessor.hpp" -#include "events/SendPortValue.hpp" + +#include "AudioBuffer.hpp" +#include "EventBuffer.hpp" #include "InputPort.hpp" -#include "OutputPort.hpp" #include "InternalPlugin.hpp" -#include "AudioBuffer.hpp" +#include "Notification.hpp" +#include "OutputPort.hpp" +#include "PostProcessor.hpp" #include "ProcessContext.hpp" -#include "EventBuffer.hpp" #include "util.hpp" using namespace std; -- cgit v1.2.1