summaryrefslogtreecommitdiffstats
path: root/src/libs/engine/NodeFactory.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/libs/engine/NodeFactory.h')
-rw-r--r--src/libs/engine/NodeFactory.h6
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;
};