diff options
author | David Robillard <d@drobilla.net> | 2010-03-06 10:23:19 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2010-03-06 10:23:19 +0000 |
commit | 1b8170fc1d70089e253eb9a77abdd6601d94f6bf (patch) | |
tree | 989eace5fd188caf898503a5760a92a24327b1cc /src/Thread.cpp | |
parent | f0179c98cf1f9112b1b47b159feebfc5a72c35c2 (diff) | |
download | raul-1b8170fc1d70089e253eb9a77abdd6601d94f6bf.tar.gz raul-1b8170fc1d70089e253eb9a77abdd6601d94f6bf.tar.bz2 raul-1b8170fc1d70089e253eb9a77abdd6601d94f6bf.zip |
Save Ingen patches as working standard LV2 plugin bundles.
This allows you to create an Ingen patch in Ingen running as a Jack client,
save it, then load that patch as an LV2 plugin in any LV2 compliant host.
Eliminate (hopefully) all static data in the engine (for multiple instantiations in a single process).
More API/ABI stable interface for Ingen::Shared::World.
git-svn-id: http://svn.drobilla.net/lad/trunk/raul@2533 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/Thread.cpp')
-rw-r--r-- | src/Thread.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/Thread.cpp b/src/Thread.cpp index 9c1a920..15ddf0b 100644 --- a/src/Thread.cpp +++ b/src/Thread.cpp @@ -32,7 +32,6 @@ pthread_key_t Thread::_thread_key; Thread::Thread(const std::string& name) : _exit_flag(false) - , _context(0) , _name(name) , _pthread_exists(false) , _own_thread(true) @@ -45,7 +44,6 @@ Thread::Thread(const std::string& name) /** Must be called from thread */ Thread::Thread(pthread_t thread, const std::string& name) : _exit_flag(false) - , _context(0) , _name(name) , _pthread_exists(true) , _own_thread(false) |