summaryrefslogtreecommitdiffstats
path: root/slv2
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2007-09-20 18:51:33 +0000
committerDavid Robillard <d@drobilla.net>2007-09-20 18:51:33 +0000
commitdf69be82f1cd26fb16d8c35c67ea3accdfb53bfe (patch)
treeb9f422d762ac46272c06333147cb78990b62a615 /slv2
parent3297e8ba6767ca5dea8d399e8b17bd610fc8bb26 (diff)
downloadlilv-df69be82f1cd26fb16d8c35c67ea3accdfb53bfe.tar.gz
lilv-df69be82f1cd26fb16d8c35c67ea3accdfb53bfe.tar.bz2
lilv-df69be82f1cd26fb16d8c35c67ea3accdfb53bfe.zip
Remove lock stuff I hereby deem not SLV2's problem.
git-svn-id: http://svn.drobilla.net/lad/slv2@741 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'slv2')
-rw-r--r--slv2/world.h25
1 files changed, 0 insertions, 25 deletions
diff --git a/slv2/world.h b/slv2/world.h
index a133010..e4e135d 100644
--- a/slv2/world.h
+++ b/slv2/world.h
@@ -70,31 +70,6 @@ slv2_world_new_using_rdf_world(librdf_world* world);
void
slv2_world_free(SLV2World world);
-#if 0
-/** Set the RDF lock function.
- *
- * If set, this function will be called before any calls to librdf functions.
- * This can be used to make SLV2 thread-safe.
- *
- * \a lock will be called with \a data as a parameter, whenever SLV2 is going
- * to perform an RDF operation.
- */
-void
-slv2_world_set_rdf_lock_function(SLV2World world, void (*lock)(void*), void* data);
-
-
-/** Set the unlock function.
- *
- * This is the counterpart to the RDF lock function set with
- * slv2_world_set_rdf_lock_function. Be sure to call this after locking,
- * or a deadlock will occur.
- *
- * \a unlock will be called with the same data pointer set with
- * slv2_world_set_rdf_lock_function.
- */
-void
-slv2_world_set_rdf_unlock_function(SLV2World world, void (*unlock)(void*));
-#endif
/** Load all installed LV2 bundles on the system.
*