From a5fc27d5d781b3b0e53f23c566c02522e910507c Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sun, 11 Feb 2007 01:26:07 +0000 Subject: Moved Maid from Ingen to Raul. Working machina MIDI learn, fixes, etc, etc. git-svn-id: http://svn.drobilla.net/lad/ingen@302 a436a847-0d15-0410-975c-d299462d15a1 --- src/libs/engine/Maid.h | 63 -------------------------------------------------- 1 file changed, 63 deletions(-) delete mode 100644 src/libs/engine/Maid.h (limited to 'src/libs/engine/Maid.h') diff --git a/src/libs/engine/Maid.h b/src/libs/engine/Maid.h deleted file mode 100644 index 038c0a5e..00000000 --- a/src/libs/engine/Maid.h +++ /dev/null @@ -1,63 +0,0 @@ -/* This file is part of Ingen. - * Copyright (C) 2007 Dave Robillard - * - * Ingen is free software; you can redistribute it and/or modify it under the - * terms of the GNU General Public License as published by the Free Software - * Foundation; either version 2 of the License, or (at your option) any later - * version. - * - * Ingen is distributed in the hope that it will be useful, but WITHOUT ANY - * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS - * FOR A PARTICULAR PURPOSE. See the GNU General Public License for details. - * - * You should have received a copy of the GNU General Public License along - * with this program; if not, write to the Free Software Foundation, Inc., - * 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA - */ - -#ifndef MAID_H -#define MAID_H - -#include -#include "raul/SRSWQueue.h" -#include - - -/** Explicitly driven garbage collector. - * - * This is how realtime parts of the code can schedule the deletion of - * objects - push() is realtime safe. - * - * cleanup() is meant to be called periodically to free memory, often - * enough to prevent the queue from overflowing. This is done by the - * main thread (in Ingen.cpp) since it has nothing better to do. - * - * \ingroup engine - */ -class Maid : boost::noncopyable -{ -public: - Maid(size_t size); - ~Maid(); - - inline void push(Raul::Deletable* obj); - - void cleanup(); - -private: - Raul::SRSWQueue _objects; -}; - - -/** Push an event to be deleted. Realtime safe. - */ -inline void -Maid::push(Raul::Deletable* obj) -{ - if (obj != NULL) - _objects.push(obj); -} - - -#endif // MAID_H - -- cgit v1.2.1