There was an error while loading. Please reload this page.
1 parent ecca78f commit 02433cfCopy full SHA for 02433cf
1 file changed
profiling/src/io/got_elf64.rs
@@ -225,9 +225,9 @@ pub unsafe extern "C" fn callback(
225
.unwrap_or("[Unknown]")
226
};
227
228
- // I guess if we try to hook into GOT from `linux-vdso` or `ld-linux` our best outcome will be
229
- // that nothing happens, but most likely we'll crash and we should avoid that.
230
- 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") {
231
return 0;
232
}
233
0 commit comments