diff options
author | David Robillard <d@drobilla.net> | 2007-02-11 01:26:07 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2007-02-11 01:26:07 +0000 |
commit | a5fc27d5d781b3b0e53f23c566c02522e910507c (patch) | |
tree | b63a9d8358b64078c68e025f977d77c121fdc7c7 /src/libs/engine/Maid.h | |
parent | 2f652fcefc7e7bfe3b9c3b56172a2d69ee604cbf (diff) | |
download | ingen-a5fc27d5d781b3b0e53f23c566c02522e910507c.tar.gz ingen-a5fc27d5d781b3b0e53f23c566c02522e910507c.tar.bz2 ingen-a5fc27d5d781b3b0e53f23c566c02522e910507c.zip |
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
Diffstat (limited to 'src/libs/engine/Maid.h')
-rw-r--r-- | src/libs/engine/Maid.h | 63 |
1 files changed, 0 insertions, 63 deletions
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 <http://drobilla.net> - * - * 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 <boost/utility.hpp> -#include "raul/SRSWQueue.h" -#include <raul/Deletable.h> - - -/** 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<Raul::Deletable*> _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 - |