Skip to content

Commit 38dbcde

Browse files
debug info path entity is needed otherwise unwinder fails to map key to RDI
1 parent 81f08a0 commit 38dbcde

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ctrl/ctrl_core.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6934,7 +6934,7 @@ ctrl_call_stack_artifact_create(String8 key, B32 *cancel_signal, B32 *retry_out,
69346934
rec = ctrl_entity_rec_depth_first_pre(src_e, src_process);
69356935

69366936
// rjf: determine if we need this entity
6937-
B32 need_this_entity = (ctrl_handle_match(thread_handle, src_e->handle) || src_e->kind == CTRL_EntityKind_Module || src_e->kind == CTRL_EntityKind_Process);
6937+
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);
69386938

69396939
// rjf: copy this entity
69406940
CTRL_Entity *dst_e = &ctrl_entity_nil;

0 commit comments

Comments
 (0)