Tools: improve gdb frame filter for lazy functions

This commit is contained in:
Jacques Lucke
2024-08-08 12:02:00 +02:00
parent f172b570dd
commit 2e412e683b

View File

@@ -476,9 +476,8 @@ class LazyFunctionEvalFilter:
@staticmethod
def frame_to_name(frame):
function_name = frame.function()
if function_name.startswith(
"blender::fn::lazy_function::LazyFunction::execute"
):
if (function_name.startswith("blender::fn::lazy_function::LazyFunction::execute")
or function_name.startswith("blender::fn::lazy_function::Executor::push_to_task_pool")):
return "Execute Lazy Function"