From c67392abf59b500fe405101d7ad896d9da869e47 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Tue, 5 Jan 2010 03:51:50 +0000 Subject: Realtime safe buffer reference handling. Turns out that dropping a shared_ptr is not realtime safe, even if you use a realtime safe deleter. Instead, instrusive_ptr is used for buffer references, so a buffer reference may safely be dropped in the audio thread (in which case it will be recycled by the BufferFactory). Faster, cleaner, better. git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@2341 a436a847-0d15-0410-975c-d299462d15a1 --- src/engine/NodeImpl.hpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/engine/NodeImpl.hpp') diff --git a/src/engine/NodeImpl.hpp b/src/engine/NodeImpl.hpp index 55ff5417..cbb212b7 100644 --- a/src/engine/NodeImpl.hpp +++ b/src/engine/NodeImpl.hpp @@ -19,6 +19,7 @@ #define NODEIMPL_H #include +#include "raul/IntrusivePtr.hpp" #include "interface/Node.hpp" #include "GraphObjectImpl.hpp" @@ -133,7 +134,7 @@ public: */ virtual void process(ProcessContext& context) = 0; - virtual void set_port_buffer(uint32_t voice, uint32_t port_num, SharedPtr buf) = 0; + virtual void set_port_buffer(uint32_t voice, uint32_t port_num, IntrusivePtr buf) = 0; virtual uint32_t num_ports() const = 0; -- cgit v1.2.1