We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fc3e08b commit 5aa4152Copy full SHA for 5aa4152
1 file changed
src/run/runner/wall_time/perf/mod.rs
@@ -256,7 +256,7 @@ impl PerfRunner {
256
.entry(pid)
257
.or_default()
258
.push(unwind_data);
259
- debug!("Added unwind data for {path:?}");
+ debug!("Added unwind data for {path:?} ({base_addr:x} - {end_addr:x})");
260
}
261
Err(error) => {
262
debug!(
@@ -267,6 +267,8 @@ impl PerfRunner {
267
268
269
270
+ } else if map.perms.contains(MMPermissions::EXECUTE) {
271
+ debug!("Found executable mapping without path: {base_addr:x} - {end_addr:x}");
272
273
274
0 commit comments