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