Skip to content

Commit 8e7312b

Browse files
committed
chore: add debug logs for proc maps
1 parent df44138 commit 8e7312b

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
@@ -253,7 +253,7 @@ impl PerfRunner {
253253
.entry(pid)
254254
.or_default()
255255
.push(unwind_data);
256-
debug!("Added unwind data for {path:?}");
256+
debug!("Added unwind data for {path:?} ({base_addr:x} - {end_addr:x})");
257257
}
258258
Err(error) => {
259259
debug!(
@@ -264,6 +264,8 @@ impl PerfRunner {
264264
}
265265
}
266266
}
267+
} else if map.perms.contains(MMPermissions::EXECUTE) {
268+
debug!("Found executable mapping without path: {base_addr:x} - {end_addr:x}");
267269
}
268270
}
269271
}

0 commit comments

Comments
 (0)