[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [28434] branches/render25/source/blender/ blenlib/intern/threads.c: Render Branch: fix for irradiance cache mutex unlock that got lost

Brecht Van Lommel brecht at blender.org
Mon Apr 26 13:28:20 CEST 2010


Revision: 28434
          http://projects.blender.org/plugins/scmsvn/viewcvs.php?view=rev&root=bf-blender&revision=28434
Author:   blendix
Date:     2010-04-26 13:28:20 +0200 (Mon, 26 Apr 2010)

Log Message:
-----------
Render Branch: fix for irradiance cache mutex unlock that got lost
in code changes.

Modified Paths:
--------------
    branches/render25/source/blender/blenlib/intern/threads.c

Modified: branches/render25/source/blender/blenlib/intern/threads.c
===================================================================
--- branches/render25/source/blender/blenlib/intern/threads.c	2010-04-26 10:31:09 UTC (rev 28433)
+++ branches/render25/source/blender/blenlib/intern/threads.c	2010-04-26 11:28:20 UTC (rev 28434)
@@ -359,6 +359,8 @@
 		pthread_mutex_unlock(&_viewer_lock);
 	else if(type==LOCK_CUSTOM1)
 		pthread_mutex_unlock(&_custom1_lock);
+	else if(type==LOCK_RCACHE)
+		pthread_mutex_unlock(&_rcache_lock);
 	else if(type==LOCK_OPENGL)
 		pthread_mutex_unlock(&_opengl_lock);
 }





More information about the Bf-blender-cvs mailing list