├── .gitignore ├── COPYING ├── Makefile ├── README.md ├── include ├── lilv │ └── lilv.h ├── lilv_config.h ├── lv2 │ └── lv2plug.in │ │ └── ns │ │ ├── ext │ │ ├── atom │ │ │ ├── atom.h │ │ │ ├── forge.h │ │ │ └── util.h │ │ ├── buf-size │ │ │ └── buf-size.h │ │ ├── data-access │ │ │ └── data-access.h │ │ ├── dynmanifest │ │ │ └── dynmanifest.h │ │ ├── event │ │ │ ├── event-helpers.h │ │ │ └── event.h │ │ ├── instance-access │ │ │ └── instance-access.h │ │ ├── log │ │ │ ├── log.h │ │ │ └── logger.h │ │ ├── midi │ │ │ └── midi.h │ │ ├── morph │ │ │ └── morph.h │ │ ├── options │ │ │ └── options.h │ │ ├── parameters │ │ │ └── parameters.h │ │ ├── patch │ │ │ └── patch.h │ │ ├── port-groups │ │ │ └── port-groups.h │ │ ├── port-props │ │ │ └── port-props.h │ │ ├── presets │ │ │ └── presets.h │ │ ├── resize-port │ │ │ └── resize-port.h │ │ ├── state │ │ │ └── state.h │ │ ├── time │ │ │ └── time.h │ │ ├── uri-map │ │ │ └── uri-map.h │ │ ├── urid │ │ │ └── urid.h │ │ └── worker │ │ │ └── worker.h │ │ ├── extensions │ │ ├── ui │ │ │ └── ui.h │ │ └── units │ │ │ └── units.h │ │ └── lv2core │ │ ├── lv2.h │ │ └── lv2_util.h ├── serd │ └── serd.h ├── serd_config.h ├── sord │ └── sord.h ├── sord_config.h ├── sratom │ └── sratom.h └── vestige.h ├── lib ├── lilv │ ├── collections.c │ ├── instance.c │ ├── lib.c │ ├── lilv_internal.h │ ├── node.c │ ├── plugin.c │ ├── pluginclass.c │ ├── port.c │ ├── query.c │ ├── scalepoint.c │ ├── state.c │ ├── ui.c │ ├── util.c │ ├── world.c │ └── zix │ │ ├── common.h │ │ ├── tree.c │ │ └── tree.h ├── pthreads-w32 │ ├── attr.c │ ├── autostatic.c │ ├── barrier.c │ ├── cancel.c │ ├── cleanup.c │ ├── condvar.c │ ├── config.h │ ├── context.h │ ├── create.c │ ├── dll.c │ ├── errno.c │ ├── exit.c │ ├── fork.c │ ├── global.c │ ├── implement.h │ ├── misc.c │ ├── mutex.c │ ├── need_errno.h │ ├── nonportable.c │ ├── private.c │ ├── pthread-rg.c │ ├── pthread.c │ ├── pthread.h │ ├── pthread_attr_destroy.c │ ├── pthread_attr_getdetachstate.c │ ├── pthread_attr_getinheritsched.c │ ├── pthread_attr_getschedparam.c │ ├── pthread_attr_getschedpolicy.c │ ├── pthread_attr_getscope.c │ ├── pthread_attr_getstackaddr.c │ ├── pthread_attr_getstacksize.c │ ├── pthread_attr_init.c │ ├── pthread_attr_setdetachstate.c │ ├── pthread_attr_setinheritsched.c │ ├── pthread_attr_setschedparam.c │ ├── pthread_attr_setschedpolicy.c │ ├── pthread_attr_setscope.c │ ├── pthread_attr_setstackaddr.c │ ├── pthread_attr_setstacksize.c │ ├── pthread_barrier_destroy.c │ ├── pthread_barrier_init.c │ ├── pthread_barrier_wait.c │ ├── pthread_barrierattr_destroy.c │ ├── pthread_barrierattr_getpshared.c │ ├── pthread_barrierattr_init.c │ ├── pthread_barrierattr_setpshared.c │ ├── pthread_cancel.c │ ├── pthread_cond_destroy.c │ ├── pthread_cond_init.c │ ├── pthread_cond_signal.c │ ├── pthread_cond_wait.c │ ├── pthread_condattr_destroy.c │ ├── pthread_condattr_getpshared.c │ ├── pthread_condattr_init.c │ ├── pthread_condattr_setpshared.c │ ├── pthread_delay_np.c │ ├── pthread_detach.c │ ├── pthread_equal.c │ ├── pthread_exit.c │ ├── pthread_getconcurrency.c │ ├── pthread_getschedparam.c │ ├── pthread_getspecific.c │ ├── pthread_getunique_np.c │ ├── pthread_getw32threadhandle_np.c │ ├── pthread_join.c │ ├── pthread_key_create.c │ ├── pthread_key_delete.c │ ├── pthread_kill.c │ ├── pthread_mutex_consistent.c │ ├── pthread_mutex_destroy.c │ ├── pthread_mutex_init.c │ ├── pthread_mutex_lock.c │ ├── pthread_mutex_timedlock.c │ ├── pthread_mutex_trylock.c │ ├── pthread_mutex_unlock.c │ ├── pthread_mutexattr_destroy.c │ ├── pthread_mutexattr_getkind_np.c │ ├── pthread_mutexattr_getpshared.c │ ├── pthread_mutexattr_getrobust.c │ ├── pthread_mutexattr_gettype.c │ ├── pthread_mutexattr_init.c │ ├── pthread_mutexattr_setkind_np.c │ ├── pthread_mutexattr_setpshared.c │ ├── pthread_mutexattr_setrobust.c │ ├── pthread_mutexattr_settype.c │ ├── pthread_num_processors_np.c │ ├── pthread_once.c │ ├── pthread_rwlock_destroy.c │ ├── pthread_rwlock_init.c │ ├── pthread_rwlock_rdlock.c │ ├── pthread_rwlock_timedrdlock.c │ ├── pthread_rwlock_timedwrlock.c │ ├── pthread_rwlock_tryrdlock.c │ ├── pthread_rwlock_trywrlock.c │ ├── pthread_rwlock_unlock.c │ ├── pthread_rwlock_wrlock.c │ ├── pthread_rwlockattr_destroy.c │ ├── pthread_rwlockattr_getpshared.c │ ├── pthread_rwlockattr_init.c │ ├── pthread_rwlockattr_setpshared.c │ ├── pthread_self.c │ ├── pthread_setcancelstate.c │ ├── pthread_setcanceltype.c │ ├── pthread_setconcurrency.c │ ├── pthread_setschedparam.c │ ├── pthread_setspecific.c │ ├── pthread_spin_destroy.c │ ├── pthread_spin_init.c │ ├── pthread_spin_lock.c │ ├── pthread_spin_trylock.c │ ├── pthread_spin_unlock.c │ ├── pthread_testcancel.c │ ├── pthread_timechange_handler_np.c │ ├── pthread_win32_attach_detach_np.c │ ├── ptw32_MCS_lock.c │ ├── ptw32_callUserDestroyRoutines.c │ ├── ptw32_calloc.c │ ├── ptw32_cond_check_need_init.c │ ├── ptw32_getprocessors.c │ ├── ptw32_is_attr.c │ ├── ptw32_mutex_check_need_init.c │ ├── ptw32_new.c │ ├── ptw32_processInitialize.c │ ├── ptw32_processTerminate.c │ ├── ptw32_relmillisecs.c │ ├── ptw32_reuse.c │ ├── ptw32_rwlock_cancelwrwait.c │ ├── ptw32_rwlock_check_need_init.c │ ├── ptw32_semwait.c │ ├── ptw32_spinlock_check_need_init.c │ ├── ptw32_threadDestroy.c │ ├── ptw32_threadStart.c │ ├── ptw32_throw.c │ ├── ptw32_timespec.c │ ├── ptw32_tkAssocCreate.c │ ├── ptw32_tkAssocDestroy.c │ ├── rwlock.c │ ├── sched.c │ ├── sched.h │ ├── sched_get_priority_max.c │ ├── sched_get_priority_min.c │ ├── sched_getscheduler.c │ ├── sched_setscheduler.c │ ├── sched_yield.c │ ├── sem_close.c │ ├── sem_destroy.c │ ├── sem_getvalue.c │ ├── sem_init.c │ ├── sem_open.c │ ├── sem_post.c │ ├── sem_post_multiple.c │ ├── sem_timedwait.c │ ├── sem_trywait.c │ ├── sem_unlink.c │ ├── sem_wait.c │ ├── semaphore.c │ ├── semaphore.h │ ├── signal.c │ ├── spin.c │ ├── sync.c │ ├── tsd.c │ └── w32_CancelableWait.c ├── serd │ ├── env.c │ ├── node.c │ ├── reader.c │ ├── serd_internal.h │ ├── string.c │ ├── uri.c │ └── writer.c ├── sord │ ├── sord.c │ ├── sord_internal.h │ ├── syntax.c │ └── zix │ │ ├── btree.c │ │ ├── btree.h │ │ ├── common.h │ │ ├── digest.c │ │ ├── digest.h │ │ ├── hash.c │ │ └── hash.h └── sratom │ └── sratom.c ├── misc └── plist ├── src ├── instantiate.cc ├── loadlib.cc ├── loadlib.h ├── lv2desc.h ├── lv2ttl.cc ├── lv2ttl.h ├── lv2vst.cc ├── lv2vst.h ├── lv2vstui.cc ├── ringbuffer.h ├── shell.h ├── state.cc ├── uri_map.h ├── vst.h ├── vstmain.cc ├── worker.cc └── worker.h └── update_lv2stack.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/.gitignore -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/COPYING -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/README.md -------------------------------------------------------------------------------- /include/lilv/lilv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/include/lilv/lilv.h -------------------------------------------------------------------------------- /include/lilv_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/include/lilv_config.h -------------------------------------------------------------------------------- /include/lv2/lv2plug.in/ns/ext/atom/atom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/include/lv2/lv2plug.in/ns/ext/atom/atom.h -------------------------------------------------------------------------------- /include/lv2/lv2plug.in/ns/ext/atom/forge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/include/lv2/lv2plug.in/ns/ext/atom/forge.h -------------------------------------------------------------------------------- /include/lv2/lv2plug.in/ns/ext/atom/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/include/lv2/lv2plug.in/ns/ext/atom/util.h -------------------------------------------------------------------------------- /include/lv2/lv2plug.in/ns/ext/buf-size/buf-size.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/include/lv2/lv2plug.in/ns/ext/buf-size/buf-size.h -------------------------------------------------------------------------------- /include/lv2/lv2plug.in/ns/ext/data-access/data-access.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/include/lv2/lv2plug.in/ns/ext/data-access/data-access.h -------------------------------------------------------------------------------- /include/lv2/lv2plug.in/ns/ext/dynmanifest/dynmanifest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/include/lv2/lv2plug.in/ns/ext/dynmanifest/dynmanifest.h -------------------------------------------------------------------------------- /include/lv2/lv2plug.in/ns/ext/event/event-helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/include/lv2/lv2plug.in/ns/ext/event/event-helpers.h -------------------------------------------------------------------------------- /include/lv2/lv2plug.in/ns/ext/event/event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/include/lv2/lv2plug.in/ns/ext/event/event.h -------------------------------------------------------------------------------- /include/lv2/lv2plug.in/ns/ext/instance-access/instance-access.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/include/lv2/lv2plug.in/ns/ext/instance-access/instance-access.h -------------------------------------------------------------------------------- /include/lv2/lv2plug.in/ns/ext/log/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/include/lv2/lv2plug.in/ns/ext/log/log.h -------------------------------------------------------------------------------- /include/lv2/lv2plug.in/ns/ext/log/logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/include/lv2/lv2plug.in/ns/ext/log/logger.h -------------------------------------------------------------------------------- /include/lv2/lv2plug.in/ns/ext/midi/midi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/include/lv2/lv2plug.in/ns/ext/midi/midi.h -------------------------------------------------------------------------------- /include/lv2/lv2plug.in/ns/ext/morph/morph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/include/lv2/lv2plug.in/ns/ext/morph/morph.h -------------------------------------------------------------------------------- /include/lv2/lv2plug.in/ns/ext/options/options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/include/lv2/lv2plug.in/ns/ext/options/options.h -------------------------------------------------------------------------------- /include/lv2/lv2plug.in/ns/ext/parameters/parameters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/include/lv2/lv2plug.in/ns/ext/parameters/parameters.h -------------------------------------------------------------------------------- /include/lv2/lv2plug.in/ns/ext/patch/patch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/include/lv2/lv2plug.in/ns/ext/patch/patch.h -------------------------------------------------------------------------------- /include/lv2/lv2plug.in/ns/ext/port-groups/port-groups.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/include/lv2/lv2plug.in/ns/ext/port-groups/port-groups.h -------------------------------------------------------------------------------- /include/lv2/lv2plug.in/ns/ext/port-props/port-props.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/include/lv2/lv2plug.in/ns/ext/port-props/port-props.h -------------------------------------------------------------------------------- /include/lv2/lv2plug.in/ns/ext/presets/presets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/include/lv2/lv2plug.in/ns/ext/presets/presets.h -------------------------------------------------------------------------------- /include/lv2/lv2plug.in/ns/ext/resize-port/resize-port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/include/lv2/lv2plug.in/ns/ext/resize-port/resize-port.h -------------------------------------------------------------------------------- /include/lv2/lv2plug.in/ns/ext/state/state.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/include/lv2/lv2plug.in/ns/ext/state/state.h -------------------------------------------------------------------------------- /include/lv2/lv2plug.in/ns/ext/time/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/include/lv2/lv2plug.in/ns/ext/time/time.h -------------------------------------------------------------------------------- /include/lv2/lv2plug.in/ns/ext/uri-map/uri-map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/include/lv2/lv2plug.in/ns/ext/uri-map/uri-map.h -------------------------------------------------------------------------------- /include/lv2/lv2plug.in/ns/ext/urid/urid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/include/lv2/lv2plug.in/ns/ext/urid/urid.h -------------------------------------------------------------------------------- /include/lv2/lv2plug.in/ns/ext/worker/worker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/include/lv2/lv2plug.in/ns/ext/worker/worker.h -------------------------------------------------------------------------------- /include/lv2/lv2plug.in/ns/extensions/ui/ui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/include/lv2/lv2plug.in/ns/extensions/ui/ui.h -------------------------------------------------------------------------------- /include/lv2/lv2plug.in/ns/extensions/units/units.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/include/lv2/lv2plug.in/ns/extensions/units/units.h -------------------------------------------------------------------------------- /include/lv2/lv2plug.in/ns/lv2core/lv2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/include/lv2/lv2plug.in/ns/lv2core/lv2.h -------------------------------------------------------------------------------- /include/lv2/lv2plug.in/ns/lv2core/lv2_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/include/lv2/lv2plug.in/ns/lv2core/lv2_util.h -------------------------------------------------------------------------------- /include/serd/serd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/include/serd/serd.h -------------------------------------------------------------------------------- /include/serd_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/include/serd_config.h -------------------------------------------------------------------------------- /include/sord/sord.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/include/sord/sord.h -------------------------------------------------------------------------------- /include/sord_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/include/sord_config.h -------------------------------------------------------------------------------- /include/sratom/sratom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/include/sratom/sratom.h -------------------------------------------------------------------------------- /include/vestige.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/include/vestige.h -------------------------------------------------------------------------------- /lib/lilv/collections.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/lib/lilv/collections.c -------------------------------------------------------------------------------- /lib/lilv/instance.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/lib/lilv/instance.c -------------------------------------------------------------------------------- /lib/lilv/lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/lib/lilv/lib.c -------------------------------------------------------------------------------- /lib/lilv/lilv_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/lib/lilv/lilv_internal.h -------------------------------------------------------------------------------- /lib/lilv/node.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/lib/lilv/node.c -------------------------------------------------------------------------------- /lib/lilv/plugin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/lib/lilv/plugin.c -------------------------------------------------------------------------------- /lib/lilv/pluginclass.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/lib/lilv/pluginclass.c -------------------------------------------------------------------------------- /lib/lilv/port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/lib/lilv/port.c -------------------------------------------------------------------------------- /lib/lilv/query.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/lib/lilv/query.c -------------------------------------------------------------------------------- /lib/lilv/scalepoint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/lib/lilv/scalepoint.c -------------------------------------------------------------------------------- /lib/lilv/state.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/lib/lilv/state.c -------------------------------------------------------------------------------- /lib/lilv/ui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/lib/lilv/ui.c -------------------------------------------------------------------------------- /lib/lilv/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/lib/lilv/util.c -------------------------------------------------------------------------------- /lib/lilv/world.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/lib/lilv/world.c -------------------------------------------------------------------------------- /lib/lilv/zix/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/lib/lilv/zix/common.h -------------------------------------------------------------------------------- /lib/lilv/zix/tree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/lib/lilv/zix/tree.c -------------------------------------------------------------------------------- /lib/lilv/zix/tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/lib/lilv/zix/tree.h -------------------------------------------------------------------------------- /lib/pthreads-w32/attr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/lib/pthreads-w32/attr.c -------------------------------------------------------------------------------- /lib/pthreads-w32/autostatic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/lib/pthreads-w32/autostatic.c -------------------------------------------------------------------------------- /lib/pthreads-w32/barrier.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/lib/pthreads-w32/barrier.c -------------------------------------------------------------------------------- /lib/pthreads-w32/cancel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/lib/pthreads-w32/cancel.c -------------------------------------------------------------------------------- /lib/pthreads-w32/cleanup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/lib/pthreads-w32/cleanup.c -------------------------------------------------------------------------------- /lib/pthreads-w32/condvar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/lib/pthreads-w32/condvar.c -------------------------------------------------------------------------------- /lib/pthreads-w32/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/lib/pthreads-w32/config.h -------------------------------------------------------------------------------- /lib/pthreads-w32/context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/lib/pthreads-w32/context.h -------------------------------------------------------------------------------- /lib/pthreads-w32/create.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/lib/pthreads-w32/create.c -------------------------------------------------------------------------------- /lib/pthreads-w32/dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/lib/pthreads-w32/dll.c -------------------------------------------------------------------------------- /lib/pthreads-w32/errno.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/lib/pthreads-w32/errno.c -------------------------------------------------------------------------------- /lib/pthreads-w32/exit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/lib/pthreads-w32/exit.c -------------------------------------------------------------------------------- /lib/pthreads-w32/fork.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/lib/pthreads-w32/fork.c -------------------------------------------------------------------------------- /lib/pthreads-w32/global.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/lib/pthreads-w32/global.c -------------------------------------------------------------------------------- /lib/pthreads-w32/implement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/lib/pthreads-w32/implement.h -------------------------------------------------------------------------------- /lib/pthreads-w32/misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/lib/pthreads-w32/misc.c -------------------------------------------------------------------------------- /lib/pthreads-w32/mutex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/lib/pthreads-w32/mutex.c -------------------------------------------------------------------------------- /lib/pthreads-w32/need_errno.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/lib/pthreads-w32/need_errno.h -------------------------------------------------------------------------------- /lib/pthreads-w32/nonportable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/lib/pthreads-w32/nonportable.c -------------------------------------------------------------------------------- /lib/pthreads-w32/private.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/lib/pthreads-w32/private.c -------------------------------------------------------------------------------- /lib/pthreads-w32/pthread-rg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/lib/pthreads-w32/pthread-rg.c -------------------------------------------------------------------------------- /lib/pthreads-w32/pthread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/lib/pthreads-w32/pthread.c -------------------------------------------------------------------------------- /lib/pthreads-w32/pthread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/lib/pthreads-w32/pthread.h -------------------------------------------------------------------------------- /lib/pthreads-w32/pthread_attr_destroy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/lib/pthreads-w32/pthread_attr_destroy.c -------------------------------------------------------------------------------- /lib/pthreads-w32/pthread_attr_getdetachstate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/lib/pthreads-w32/pthread_attr_getdetachstate.c -------------------------------------------------------------------------------- /lib/pthreads-w32/pthread_attr_getinheritsched.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/lib/pthreads-w32/pthread_attr_getinheritsched.c -------------------------------------------------------------------------------- /lib/pthreads-w32/pthread_attr_getschedparam.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/lib/pthreads-w32/pthread_attr_getschedparam.c -------------------------------------------------------------------------------- /lib/pthreads-w32/pthread_attr_getschedpolicy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/lib/pthreads-w32/pthread_attr_getschedpolicy.c -------------------------------------------------------------------------------- /lib/pthreads-w32/pthread_attr_getscope.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/lib/pthreads-w32/pthread_attr_getscope.c -------------------------------------------------------------------------------- /lib/pthreads-w32/pthread_attr_getstackaddr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/lib/pthreads-w32/pthread_attr_getstackaddr.c -------------------------------------------------------------------------------- /lib/pthreads-w32/pthread_attr_getstacksize.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/lib/pthreads-w32/pthread_attr_getstacksize.c -------------------------------------------------------------------------------- /lib/pthreads-w32/pthread_attr_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/lib/pthreads-w32/pthread_attr_init.c -------------------------------------------------------------------------------- /lib/pthreads-w32/pthread_attr_setdetachstate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/lib/pthreads-w32/pthread_attr_setdetachstate.c -------------------------------------------------------------------------------- /lib/pthreads-w32/pthread_attr_setinheritsched.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/lib/pthreads-w32/pthread_attr_setinheritsched.c -------------------------------------------------------------------------------- /lib/pthreads-w32/pthread_attr_setschedparam.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/lib/pthreads-w32/pthread_attr_setschedparam.c -------------------------------------------------------------------------------- /lib/pthreads-w32/pthread_attr_setschedpolicy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/lib/pthreads-w32/pthread_attr_setschedpolicy.c -------------------------------------------------------------------------------- /lib/pthreads-w32/pthread_attr_setscope.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/lib/pthreads-w32/pthread_attr_setscope.c -------------------------------------------------------------------------------- /lib/pthreads-w32/pthread_attr_setstackaddr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/lib/pthreads-w32/pthread_attr_setstackaddr.c -------------------------------------------------------------------------------- /lib/pthreads-w32/pthread_attr_setstacksize.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/lib/pthreads-w32/pthread_attr_setstacksize.c -------------------------------------------------------------------------------- /lib/pthreads-w32/pthread_barrier_destroy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/lib/pthreads-w32/pthread_barrier_destroy.c -------------------------------------------------------------------------------- /lib/pthreads-w32/pthread_barrier_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/lib/pthreads-w32/pthread_barrier_init.c -------------------------------------------------------------------------------- /lib/pthreads-w32/pthread_barrier_wait.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/lib/pthreads-w32/pthread_barrier_wait.c -------------------------------------------------------------------------------- /lib/pthreads-w32/pthread_barrierattr_destroy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/lib/pthreads-w32/pthread_barrierattr_destroy.c -------------------------------------------------------------------------------- /lib/pthreads-w32/pthread_barrierattr_getpshared.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/lib/pthreads-w32/pthread_barrierattr_getpshared.c -------------------------------------------------------------------------------- /lib/pthreads-w32/pthread_barrierattr_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/lib/pthreads-w32/pthread_barrierattr_init.c -------------------------------------------------------------------------------- /lib/pthreads-w32/pthread_barrierattr_setpshared.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/lib/pthreads-w32/pthread_barrierattr_setpshared.c -------------------------------------------------------------------------------- /lib/pthreads-w32/pthread_cancel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/lib/pthreads-w32/pthread_cancel.c -------------------------------------------------------------------------------- /lib/pthreads-w32/pthread_cond_destroy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/lib/pthreads-w32/pthread_cond_destroy.c -------------------------------------------------------------------------------- /lib/pthreads-w32/pthread_cond_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/lib/pthreads-w32/pthread_cond_init.c -------------------------------------------------------------------------------- /lib/pthreads-w32/pthread_cond_signal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/lib/pthreads-w32/pthread_cond_signal.c -------------------------------------------------------------------------------- /lib/pthreads-w32/pthread_cond_wait.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/lib/pthreads-w32/pthread_cond_wait.c -------------------------------------------------------------------------------- /lib/pthreads-w32/pthread_condattr_destroy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/lib/pthreads-w32/pthread_condattr_destroy.c -------------------------------------------------------------------------------- /lib/pthreads-w32/pthread_condattr_getpshared.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/lib/pthreads-w32/pthread_condattr_getpshared.c -------------------------------------------------------------------------------- /lib/pthreads-w32/pthread_condattr_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/lib/pthreads-w32/pthread_condattr_init.c -------------------------------------------------------------------------------- /lib/pthreads-w32/pthread_condattr_setpshared.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/lib/pthreads-w32/pthread_condattr_setpshared.c -------------------------------------------------------------------------------- /lib/pthreads-w32/pthread_delay_np.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/lib/pthreads-w32/pthread_delay_np.c -------------------------------------------------------------------------------- /lib/pthreads-w32/pthread_detach.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/lib/pthreads-w32/pthread_detach.c -------------------------------------------------------------------------------- /lib/pthreads-w32/pthread_equal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/lib/pthreads-w32/pthread_equal.c -------------------------------------------------------------------------------- /lib/pthreads-w32/pthread_exit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/lib/pthreads-w32/pthread_exit.c -------------------------------------------------------------------------------- /lib/pthreads-w32/pthread_getconcurrency.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/lib/pthreads-w32/pthread_getconcurrency.c -------------------------------------------------------------------------------- /lib/pthreads-w32/pthread_getschedparam.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/lib/pthreads-w32/pthread_getschedparam.c -------------------------------------------------------------------------------- /lib/pthreads-w32/pthread_getspecific.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/lib/pthreads-w32/pthread_getspecific.c -------------------------------------------------------------------------------- /lib/pthreads-w32/pthread_getunique_np.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/lib/pthreads-w32/pthread_getunique_np.c -------------------------------------------------------------------------------- /lib/pthreads-w32/pthread_getw32threadhandle_np.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/lib/pthreads-w32/pthread_getw32threadhandle_np.c -------------------------------------------------------------------------------- /lib/pthreads-w32/pthread_join.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/lib/pthreads-w32/pthread_join.c -------------------------------------------------------------------------------- /lib/pthreads-w32/pthread_key_create.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/lib/pthreads-w32/pthread_key_create.c -------------------------------------------------------------------------------- /lib/pthreads-w32/pthread_key_delete.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/lib/pthreads-w32/pthread_key_delete.c -------------------------------------------------------------------------------- /lib/pthreads-w32/pthread_kill.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/lib/pthreads-w32/pthread_kill.c -------------------------------------------------------------------------------- /lib/pthreads-w32/pthread_mutex_consistent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/lib/pthreads-w32/pthread_mutex_consistent.c -------------------------------------------------------------------------------- /lib/pthreads-w32/pthread_mutex_destroy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/lib/pthreads-w32/pthread_mutex_destroy.c -------------------------------------------------------------------------------- /lib/pthreads-w32/pthread_mutex_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/lib/pthreads-w32/pthread_mutex_init.c -------------------------------------------------------------------------------- /lib/pthreads-w32/pthread_mutex_lock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/lib/pthreads-w32/pthread_mutex_lock.c -------------------------------------------------------------------------------- /lib/pthreads-w32/pthread_mutex_timedlock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/lib/pthreads-w32/pthread_mutex_timedlock.c -------------------------------------------------------------------------------- /lib/pthreads-w32/pthread_mutex_trylock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/lib/pthreads-w32/pthread_mutex_trylock.c -------------------------------------------------------------------------------- /lib/pthreads-w32/pthread_mutex_unlock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/lib/pthreads-w32/pthread_mutex_unlock.c -------------------------------------------------------------------------------- /lib/pthreads-w32/pthread_mutexattr_destroy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/lib/pthreads-w32/pthread_mutexattr_destroy.c -------------------------------------------------------------------------------- /lib/pthreads-w32/pthread_mutexattr_getkind_np.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/lib/pthreads-w32/pthread_mutexattr_getkind_np.c -------------------------------------------------------------------------------- /lib/pthreads-w32/pthread_mutexattr_getpshared.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/lib/pthreads-w32/pthread_mutexattr_getpshared.c -------------------------------------------------------------------------------- /lib/pthreads-w32/pthread_mutexattr_getrobust.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/lib/pthreads-w32/pthread_mutexattr_getrobust.c -------------------------------------------------------------------------------- /lib/pthreads-w32/pthread_mutexattr_gettype.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/lib/pthreads-w32/pthread_mutexattr_gettype.c -------------------------------------------------------------------------------- /lib/pthreads-w32/pthread_mutexattr_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/lib/pthreads-w32/pthread_mutexattr_init.c -------------------------------------------------------------------------------- /lib/pthreads-w32/pthread_mutexattr_setkind_np.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/lib/pthreads-w32/pthread_mutexattr_setkind_np.c -------------------------------------------------------------------------------- /lib/pthreads-w32/pthread_mutexattr_setpshared.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/lib/pthreads-w32/pthread_mutexattr_setpshared.c -------------------------------------------------------------------------------- /lib/pthreads-w32/pthread_mutexattr_setrobust.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/lib/pthreads-w32/pthread_mutexattr_setrobust.c -------------------------------------------------------------------------------- /lib/pthreads-w32/pthread_mutexattr_settype.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/lib/pthreads-w32/pthread_mutexattr_settype.c -------------------------------------------------------------------------------- /lib/pthreads-w32/pthread_num_processors_np.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/lib/pthreads-w32/pthread_num_processors_np.c -------------------------------------------------------------------------------- /lib/pthreads-w32/pthread_once.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/lib/pthreads-w32/pthread_once.c -------------------------------------------------------------------------------- /lib/pthreads-w32/pthread_rwlock_destroy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/lib/pthreads-w32/pthread_rwlock_destroy.c -------------------------------------------------------------------------------- /lib/pthreads-w32/pthread_rwlock_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/lib/pthreads-w32/pthread_rwlock_init.c -------------------------------------------------------------------------------- /lib/pthreads-w32/pthread_rwlock_rdlock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/lib/pthreads-w32/pthread_rwlock_rdlock.c -------------------------------------------------------------------------------- /lib/pthreads-w32/pthread_rwlock_timedrdlock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/lib/pthreads-w32/pthread_rwlock_timedrdlock.c -------------------------------------------------------------------------------- /lib/pthreads-w32/pthread_rwlock_timedwrlock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/lib/pthreads-w32/pthread_rwlock_timedwrlock.c -------------------------------------------------------------------------------- /lib/pthreads-w32/pthread_rwlock_tryrdlock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/lib/pthreads-w32/pthread_rwlock_tryrdlock.c -------------------------------------------------------------------------------- /lib/pthreads-w32/pthread_rwlock_trywrlock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/lib/pthreads-w32/pthread_rwlock_trywrlock.c -------------------------------------------------------------------------------- /lib/pthreads-w32/pthread_rwlock_unlock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/lib/pthreads-w32/pthread_rwlock_unlock.c -------------------------------------------------------------------------------- /lib/pthreads-w32/pthread_rwlock_wrlock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/lib/pthreads-w32/pthread_rwlock_wrlock.c -------------------------------------------------------------------------------- /lib/pthreads-w32/pthread_rwlockattr_destroy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/lib/pthreads-w32/pthread_rwlockattr_destroy.c -------------------------------------------------------------------------------- /lib/pthreads-w32/pthread_rwlockattr_getpshared.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/lib/pthreads-w32/pthread_rwlockattr_getpshared.c -------------------------------------------------------------------------------- /lib/pthreads-w32/pthread_rwlockattr_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/lib/pthreads-w32/pthread_rwlockattr_init.c -------------------------------------------------------------------------------- /lib/pthreads-w32/pthread_rwlockattr_setpshared.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/lib/pthreads-w32/pthread_rwlockattr_setpshared.c -------------------------------------------------------------------------------- /lib/pthreads-w32/pthread_self.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/lib/pthreads-w32/pthread_self.c -------------------------------------------------------------------------------- /lib/pthreads-w32/pthread_setcancelstate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/lib/pthreads-w32/pthread_setcancelstate.c -------------------------------------------------------------------------------- /lib/pthreads-w32/pthread_setcanceltype.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/lib/pthreads-w32/pthread_setcanceltype.c -------------------------------------------------------------------------------- /lib/pthreads-w32/pthread_setconcurrency.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/lib/pthreads-w32/pthread_setconcurrency.c -------------------------------------------------------------------------------- /lib/pthreads-w32/pthread_setschedparam.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/lib/pthreads-w32/pthread_setschedparam.c -------------------------------------------------------------------------------- /lib/pthreads-w32/pthread_setspecific.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/lib/pthreads-w32/pthread_setspecific.c -------------------------------------------------------------------------------- /lib/pthreads-w32/pthread_spin_destroy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/lib/pthreads-w32/pthread_spin_destroy.c -------------------------------------------------------------------------------- /lib/pthreads-w32/pthread_spin_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/lib/pthreads-w32/pthread_spin_init.c -------------------------------------------------------------------------------- /lib/pthreads-w32/pthread_spin_lock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/lib/pthreads-w32/pthread_spin_lock.c -------------------------------------------------------------------------------- /lib/pthreads-w32/pthread_spin_trylock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/lib/pthreads-w32/pthread_spin_trylock.c -------------------------------------------------------------------------------- /lib/pthreads-w32/pthread_spin_unlock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/lib/pthreads-w32/pthread_spin_unlock.c -------------------------------------------------------------------------------- /lib/pthreads-w32/pthread_testcancel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/lib/pthreads-w32/pthread_testcancel.c -------------------------------------------------------------------------------- /lib/pthreads-w32/pthread_timechange_handler_np.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/lib/pthreads-w32/pthread_timechange_handler_np.c -------------------------------------------------------------------------------- /lib/pthreads-w32/pthread_win32_attach_detach_np.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/lib/pthreads-w32/pthread_win32_attach_detach_np.c -------------------------------------------------------------------------------- /lib/pthreads-w32/ptw32_MCS_lock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/lib/pthreads-w32/ptw32_MCS_lock.c -------------------------------------------------------------------------------- /lib/pthreads-w32/ptw32_callUserDestroyRoutines.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/lib/pthreads-w32/ptw32_callUserDestroyRoutines.c -------------------------------------------------------------------------------- /lib/pthreads-w32/ptw32_calloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/lib/pthreads-w32/ptw32_calloc.c -------------------------------------------------------------------------------- /lib/pthreads-w32/ptw32_cond_check_need_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/lib/pthreads-w32/ptw32_cond_check_need_init.c -------------------------------------------------------------------------------- /lib/pthreads-w32/ptw32_getprocessors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/lib/pthreads-w32/ptw32_getprocessors.c -------------------------------------------------------------------------------- /lib/pthreads-w32/ptw32_is_attr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/lib/pthreads-w32/ptw32_is_attr.c -------------------------------------------------------------------------------- /lib/pthreads-w32/ptw32_mutex_check_need_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/lib/pthreads-w32/ptw32_mutex_check_need_init.c -------------------------------------------------------------------------------- /lib/pthreads-w32/ptw32_new.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/lib/pthreads-w32/ptw32_new.c -------------------------------------------------------------------------------- /lib/pthreads-w32/ptw32_processInitialize.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/lib/pthreads-w32/ptw32_processInitialize.c -------------------------------------------------------------------------------- /lib/pthreads-w32/ptw32_processTerminate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/lib/pthreads-w32/ptw32_processTerminate.c -------------------------------------------------------------------------------- /lib/pthreads-w32/ptw32_relmillisecs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/lib/pthreads-w32/ptw32_relmillisecs.c -------------------------------------------------------------------------------- /lib/pthreads-w32/ptw32_reuse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/lib/pthreads-w32/ptw32_reuse.c -------------------------------------------------------------------------------- /lib/pthreads-w32/ptw32_rwlock_cancelwrwait.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/lib/pthreads-w32/ptw32_rwlock_cancelwrwait.c -------------------------------------------------------------------------------- /lib/pthreads-w32/ptw32_rwlock_check_need_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/lib/pthreads-w32/ptw32_rwlock_check_need_init.c -------------------------------------------------------------------------------- /lib/pthreads-w32/ptw32_semwait.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/lib/pthreads-w32/ptw32_semwait.c -------------------------------------------------------------------------------- /lib/pthreads-w32/ptw32_spinlock_check_need_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/lib/pthreads-w32/ptw32_spinlock_check_need_init.c -------------------------------------------------------------------------------- /lib/pthreads-w32/ptw32_threadDestroy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/lib/pthreads-w32/ptw32_threadDestroy.c -------------------------------------------------------------------------------- /lib/pthreads-w32/ptw32_threadStart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/lib/pthreads-w32/ptw32_threadStart.c -------------------------------------------------------------------------------- /lib/pthreads-w32/ptw32_throw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/lib/pthreads-w32/ptw32_throw.c -------------------------------------------------------------------------------- /lib/pthreads-w32/ptw32_timespec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/lib/pthreads-w32/ptw32_timespec.c -------------------------------------------------------------------------------- /lib/pthreads-w32/ptw32_tkAssocCreate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/lib/pthreads-w32/ptw32_tkAssocCreate.c -------------------------------------------------------------------------------- /lib/pthreads-w32/ptw32_tkAssocDestroy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/lib/pthreads-w32/ptw32_tkAssocDestroy.c -------------------------------------------------------------------------------- /lib/pthreads-w32/rwlock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/lib/pthreads-w32/rwlock.c -------------------------------------------------------------------------------- /lib/pthreads-w32/sched.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/lib/pthreads-w32/sched.c -------------------------------------------------------------------------------- /lib/pthreads-w32/sched.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/lib/pthreads-w32/sched.h -------------------------------------------------------------------------------- /lib/pthreads-w32/sched_get_priority_max.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/lib/pthreads-w32/sched_get_priority_max.c -------------------------------------------------------------------------------- /lib/pthreads-w32/sched_get_priority_min.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/lib/pthreads-w32/sched_get_priority_min.c -------------------------------------------------------------------------------- /lib/pthreads-w32/sched_getscheduler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/lib/pthreads-w32/sched_getscheduler.c -------------------------------------------------------------------------------- /lib/pthreads-w32/sched_setscheduler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/lib/pthreads-w32/sched_setscheduler.c -------------------------------------------------------------------------------- /lib/pthreads-w32/sched_yield.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/lib/pthreads-w32/sched_yield.c -------------------------------------------------------------------------------- /lib/pthreads-w32/sem_close.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/lib/pthreads-w32/sem_close.c -------------------------------------------------------------------------------- /lib/pthreads-w32/sem_destroy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/lib/pthreads-w32/sem_destroy.c -------------------------------------------------------------------------------- /lib/pthreads-w32/sem_getvalue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/lib/pthreads-w32/sem_getvalue.c -------------------------------------------------------------------------------- /lib/pthreads-w32/sem_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/lib/pthreads-w32/sem_init.c -------------------------------------------------------------------------------- /lib/pthreads-w32/sem_open.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/lib/pthreads-w32/sem_open.c -------------------------------------------------------------------------------- /lib/pthreads-w32/sem_post.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/lib/pthreads-w32/sem_post.c -------------------------------------------------------------------------------- /lib/pthreads-w32/sem_post_multiple.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/lib/pthreads-w32/sem_post_multiple.c -------------------------------------------------------------------------------- /lib/pthreads-w32/sem_timedwait.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/lib/pthreads-w32/sem_timedwait.c -------------------------------------------------------------------------------- /lib/pthreads-w32/sem_trywait.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/lib/pthreads-w32/sem_trywait.c -------------------------------------------------------------------------------- /lib/pthreads-w32/sem_unlink.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/lib/pthreads-w32/sem_unlink.c -------------------------------------------------------------------------------- /lib/pthreads-w32/sem_wait.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/lib/pthreads-w32/sem_wait.c -------------------------------------------------------------------------------- /lib/pthreads-w32/semaphore.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/lib/pthreads-w32/semaphore.c -------------------------------------------------------------------------------- /lib/pthreads-w32/semaphore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/lib/pthreads-w32/semaphore.h -------------------------------------------------------------------------------- /lib/pthreads-w32/signal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/lib/pthreads-w32/signal.c -------------------------------------------------------------------------------- /lib/pthreads-w32/spin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/lib/pthreads-w32/spin.c -------------------------------------------------------------------------------- /lib/pthreads-w32/sync.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/lib/pthreads-w32/sync.c -------------------------------------------------------------------------------- /lib/pthreads-w32/tsd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/lib/pthreads-w32/tsd.c -------------------------------------------------------------------------------- /lib/pthreads-w32/w32_CancelableWait.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/lib/pthreads-w32/w32_CancelableWait.c -------------------------------------------------------------------------------- /lib/serd/env.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/lib/serd/env.c -------------------------------------------------------------------------------- /lib/serd/node.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/lib/serd/node.c -------------------------------------------------------------------------------- /lib/serd/reader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/lib/serd/reader.c -------------------------------------------------------------------------------- /lib/serd/serd_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/lib/serd/serd_internal.h -------------------------------------------------------------------------------- /lib/serd/string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/lib/serd/string.c -------------------------------------------------------------------------------- /lib/serd/uri.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/lib/serd/uri.c -------------------------------------------------------------------------------- /lib/serd/writer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/lib/serd/writer.c -------------------------------------------------------------------------------- /lib/sord/sord.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/lib/sord/sord.c -------------------------------------------------------------------------------- /lib/sord/sord_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/lib/sord/sord_internal.h -------------------------------------------------------------------------------- /lib/sord/syntax.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/lib/sord/syntax.c -------------------------------------------------------------------------------- /lib/sord/zix/btree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/lib/sord/zix/btree.c -------------------------------------------------------------------------------- /lib/sord/zix/btree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/lib/sord/zix/btree.h -------------------------------------------------------------------------------- /lib/sord/zix/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/lib/sord/zix/common.h -------------------------------------------------------------------------------- /lib/sord/zix/digest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/lib/sord/zix/digest.c -------------------------------------------------------------------------------- /lib/sord/zix/digest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/lib/sord/zix/digest.h -------------------------------------------------------------------------------- /lib/sord/zix/hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/lib/sord/zix/hash.c -------------------------------------------------------------------------------- /lib/sord/zix/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/lib/sord/zix/hash.h -------------------------------------------------------------------------------- /lib/sratom/sratom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/lib/sratom/sratom.c -------------------------------------------------------------------------------- /misc/plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/misc/plist -------------------------------------------------------------------------------- /src/instantiate.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/src/instantiate.cc -------------------------------------------------------------------------------- /src/loadlib.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/src/loadlib.cc -------------------------------------------------------------------------------- /src/loadlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/src/loadlib.h -------------------------------------------------------------------------------- /src/lv2desc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/src/lv2desc.h -------------------------------------------------------------------------------- /src/lv2ttl.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/src/lv2ttl.cc -------------------------------------------------------------------------------- /src/lv2ttl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/src/lv2ttl.h -------------------------------------------------------------------------------- /src/lv2vst.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/src/lv2vst.cc -------------------------------------------------------------------------------- /src/lv2vst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/src/lv2vst.h -------------------------------------------------------------------------------- /src/lv2vstui.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/src/lv2vstui.cc -------------------------------------------------------------------------------- /src/ringbuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/src/ringbuffer.h -------------------------------------------------------------------------------- /src/shell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/src/shell.h -------------------------------------------------------------------------------- /src/state.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/src/state.cc -------------------------------------------------------------------------------- /src/uri_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/src/uri_map.h -------------------------------------------------------------------------------- /src/vst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/src/vst.h -------------------------------------------------------------------------------- /src/vstmain.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/src/vstmain.cc -------------------------------------------------------------------------------- /src/worker.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/src/worker.cc -------------------------------------------------------------------------------- /src/worker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/src/worker.h -------------------------------------------------------------------------------- /update_lv2stack.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x42/lv2vst/HEAD/update_lv2stack.sh --------------------------------------------------------------------------------