Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Poirier <theeth@yahoo.com>2008-08-15 03:48:52 +0400
committerMartin Poirier <theeth@yahoo.com>2008-08-15 03:48:52 +0400
commitfeb5e3a688519316c02e9f2d0e0062d5d3ffa907 (patch)
tree767a2631d81c3baa6706abaae287d51d582b0001 /source/blender/blenlib/BLI_threads.h
parentdb42038bcf4373da6c06d936cf268fa90a90a2f4 (diff)
Add a function to join thread by index in the thread list.
This can be safely merged in trunk, in case anyone needs something like that.
Diffstat (limited to 'source/blender/blenlib/BLI_threads.h')
-rw-r--r--source/blender/blenlib/BLI_threads.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/blender/blenlib/BLI_threads.h b/source/blender/blenlib/BLI_threads.h
index 39162b8bd91..386dc7ab1ef 100644
--- a/source/blender/blenlib/BLI_threads.h
+++ b/source/blender/blenlib/BLI_threads.h
@@ -45,6 +45,7 @@ int BLI_available_threads(struct ListBase *threadbase);
int BLI_available_thread_index(struct ListBase *threadbase);
void BLI_insert_thread (struct ListBase *threadbase, void *callerdata);
void BLI_remove_thread (struct ListBase *threadbase, void *callerdata);
+void BLI_remove_thread_index(struct ListBase *threadbase, int index);
void BLI_end_threads (struct ListBase *threadbase);
void BLI_lock_thread (int type);