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:
authorSybren A. Stüvel <sybren@blender.org>2021-09-10 11:57:05 +0300
committerSybren A. Stüvel <sybren@blender.org>2021-09-10 12:03:54 +0300
commitfe4286435c54b3ba0a031f032b95615da74a7aac (patch)
treeb118d6583176209e6a07c9781b484b622741abd3 /source/blender/depsgraph/intern
parent93d2940603121acc47ea9860dac98e4e63c8f1d3 (diff)
Depsgraph: release GIL when evaluating the depsgraph
Evaluating the dependency graph potentially executes Python code when evaluating drivers. In specific situations (see T91046) this could deadlock Blender entirely. Temporarily releasing the GIL when evaluating the depsgraph resolves this. This is an improved version of rBfc460351170478e712740ae1917a2e24803eba3b, thanks @brecht for the diff! Manifest task: T91046
Diffstat (limited to 'source/blender/depsgraph/intern')
-rw-r--r--source/blender/depsgraph/intern/eval/deg_eval.cc13
1 files changed, 13 insertions, 0 deletions
diff --git a/source/blender/depsgraph/intern/eval/deg_eval.cc b/source/blender/depsgraph/intern/eval/deg_eval.cc
index ad88cf656ad..c816c7b8db5 100644
--- a/source/blender/depsgraph/intern/eval/deg_eval.cc
+++ b/source/blender/depsgraph/intern/eval/deg_eval.cc
@@ -41,6 +41,10 @@
#include "DEG_depsgraph.h"
#include "DEG_depsgraph_query.h"
+#ifdef WITH_PYTHON
+# include "BPY_extern.h"
+#endif
+
#include "atomic_ops.h"
#include "intern/depsgraph.h"
@@ -375,6 +379,11 @@ void deg_evaluate_on_refresh(Depsgraph *graph)
graph->debug.begin_graph_evaluation();
+#ifdef WITH_PYTHON
+ /* Release the GIL so that Python drivers can be evaluated. See T91046. */
+ BPy_BEGIN_ALLOW_THREADS;
+#endif
+
graph->is_evaluating = true;
depsgraph_ensure_view_layer(graph);
/* Set up evaluation state. */
@@ -415,6 +424,10 @@ void deg_evaluate_on_refresh(Depsgraph *graph)
deg_graph_clear_tags(graph);
graph->is_evaluating = false;
+#ifdef WITH_PYTHON
+ BPy_END_ALLOW_THREADS;
+#endif
+
graph->debug.end_graph_evaluation();
}