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:
authorTon Roosendaal <ton@blender.org>2009-06-07 16:12:55 +0400
committerTon Roosendaal <ton@blender.org>2009-06-07 16:12:55 +0400
commitfd1f1c5736aad7065076f70f630284d7ded836c9 (patch)
tree615559abb57919a70c3edccc0542803fbfd09670 /source/blender/blenlib
parent349f5df595140d9827862ba7024f6fe6d49a7a22 (diff)
2.5
Quick test commit to check on crashing previews; ignore warning about implicit declaration... here in OSX i can't get this crash!
Diffstat (limited to 'source/blender/blenlib')
-rw-r--r--source/blender/blenlib/intern/threads.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/blenlib/intern/threads.c b/source/blender/blenlib/intern/threads.c
index 884724270ae..2812f17d58f 100644
--- a/source/blender/blenlib/intern/threads.c
+++ b/source/blender/blenlib/intern/threads.c
@@ -112,12 +112,12 @@ typedef struct ThreadSlot {
int avail;
} ThreadSlot;
-static void BLI_lock_malloc_thread(void)
+void BLI_lock_malloc_thread(void)
{
pthread_mutex_lock(&_malloc_lock);
}
-static void BLI_unlock_malloc_thread(void)
+void BLI_unlock_malloc_thread(void)
{
pthread_mutex_unlock(&_malloc_lock);
}