Skip to content

Commit 5aa4152

Browse files
committed
chore: add debug logs for proc maps
1 parent fc3e08b commit 5aa4152

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

  • src/run/runner/wall_time/perf

src/run/runner/wall_time/perf/mod.rs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -256,7 +256,7 @@ impl PerfRunner {
256256
.entry(pid)
257257
.or_default()
258258
.push(unwind_data);
259-
debug!("Added unwind data for {path:?}");
259+
debug!("Added unwind data for {path:?} ({base_addr:x} - {end_addr:x})");
260260
}
261261
Err(error) => {
262262
debug!(
@@ -267,6 +267,8 @@ impl PerfRunner {
267267
}
268268
}
269269
}
270+
} else if map.perms.contains(MMPermissions::EXECUTE) {
271+
debug!("Found executable mapping without path: {base_addr:x} - {end_addr:x}");
270272
}
271273
}
272274
}

0 commit comments

Comments
 (0)