diff options
author | David Robillard <d@drobilla.net> | 2006-09-08 03:58:00 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2006-09-08 03:58:00 +0000 |
commit | 48f87f1f1649fb7e169fdaac2cd38370e8a4a1fa (patch) | |
tree | 9da4b4b075791ac1ec78b499dbcbec6101f54690 /src/libs/engine/NodeFactory.h | |
parent | acbe9a26ec3ab689e430225d15e95e73a7378aa9 (diff) | |
download | ingen-48f87f1f1649fb7e169fdaac2cd38370e8a4a1fa.tar.gz ingen-48f87f1f1649fb7e169fdaac2cd38370e8a4a1fa.tar.bz2 ingen-48f87f1f1649fb7e169fdaac2cd38370e8a4a1fa.zip |
De-singleton-ified Engine
Slight rework of Responder/ClientKey/ClientInterface for Requests
git-svn-id: http://svn.drobilla.net/lad/ingen@119 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/libs/engine/NodeFactory.h')
-rw-r--r-- | src/libs/engine/NodeFactory.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/libs/engine/NodeFactory.h b/src/libs/engine/NodeFactory.h index cf2fb0d0..25408b2d 100644 --- a/src/libs/engine/NodeFactory.h +++ b/src/libs/engine/NodeFactory.h @@ -56,9 +56,6 @@ public: const list<Plugin*>& plugins() { return _plugins; } - void lock_plugin_list() { pthread_mutex_lock(&_plugin_list_mutex); } - void unlock_plugin_list() { pthread_mutex_unlock(&_plugin_list_mutex); } - private: #ifdef HAVE_LADSPA void load_ladspa_plugins(); @@ -81,9 +78,6 @@ private: list<Plugin*> _internal_plugins; list<Plugin*> _plugins; - /** Used to protect the list while load_plugins is building it. */ - pthread_mutex_t _plugin_list_mutex; - bool _has_loaded; }; |