From 5dc6649496e938b32a5fe9f341de6cce962d3731 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Fri, 14 Jul 2006 22:24:00 +0000 Subject: Enforced OSC path restrictions on Path for spec conformance (since GraphObject paths will soon be part of OSC paths) git-svn-id: http://svn.drobilla.net/lad/ingen@88 a436a847-0d15-0410-975c-d299462d15a1 --- src/libs/engine/PostProcessor.cpp | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'src/libs/engine/PostProcessor.cpp') diff --git a/src/libs/engine/PostProcessor.cpp b/src/libs/engine/PostProcessor.cpp index 8b68159e..9477317d 100644 --- a/src/libs/engine/PostProcessor.cpp +++ b/src/libs/engine/PostProcessor.cpp @@ -37,13 +37,12 @@ PostProcessor::PostProcessor(size_t queue_size) } -/** Post processing thread. +/** Post-Process every pending event. * - * Infinite loop that waits on the semaphore and processes every enqueued - * event (to be signalled at the end of every process cycle). + * The PostProcessor should be whipped by the audio thread once every cycle */ void -PostProcessor::_signalled() +PostProcessor::_whipped() { while ( ! _events.is_empty()) { Event* const ev = _events.pop(); -- cgit v1.2.1