There was an error while loading. Please reload this page.
1 parent 5078e6d commit 8d724d8Copy full SHA for 8d724d8
1 file changed
profiling/src/io/got_elf64.rs
@@ -239,9 +239,9 @@ pub unsafe extern "C" fn callback(
239
std::str::from_utf8(image_name).unwrap_or("[Unknown]")
240
};
241
242
- // I guess if we try to hook into GOT from `linux-vdso` or `ld-linux` our best outcome will be
243
- // that nothing happens, but most likely we'll crash and we should avoid that.
244
- if name.contains("linux-vdso") || name.contains("ld-linux") {
+ // I guess if we try to hook into GOT from `linux-vdso`, `ld-linux` or `ld-musl` our best
+ // outcome will be that nothing happens, but most likely we'll crash and we should avoid that.
+ if name.contains("linux-vdso") || name.contains("ld-linux") || name.contains("ld-musl") {
245
return 0;
246
}
247
0 commit comments