From 38dbcde3f46497e0fa134a8337ac1ec1baead905 Mon Sep 17 00:00:00 2001 From: Nikita Smith Date: Tue, 2 Dec 2025 17:00:05 -0800 Subject: [PATCH] debug info path entity is needed otherwise unwinder fails to map key to RDI --- src/ctrl/ctrl_core.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ctrl/ctrl_core.c b/src/ctrl/ctrl_core.c index 58fd5c70..3bdb51c1 100644 --- a/src/ctrl/ctrl_core.c +++ b/src/ctrl/ctrl_core.c @@ -6934,7 +6934,7 @@ ctrl_call_stack_artifact_create(String8 key, B32 *cancel_signal, B32 *retry_out, rec = ctrl_entity_rec_depth_first_pre(src_e, src_process); // rjf: determine if we need this entity - B32 need_this_entity = (ctrl_handle_match(thread_handle, src_e->handle) || src_e->kind == CTRL_EntityKind_Module || src_e->kind == CTRL_EntityKind_Process); + B32 need_this_entity = (ctrl_handle_match(thread_handle, src_e->handle) || src_e->kind == CTRL_EntityKind_Module || src_e->kind == CTRL_EntityKind_Process || src_e->kind == CTRL_EntityKind_DebugInfoPath); // rjf: copy this entity CTRL_Entity *dst_e = &ctrl_entity_nil;