We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 68700e5 commit 0ba77ecCopy full SHA for 0ba77ec
lib/std/os/linux.zig
@@ -523,6 +523,7 @@ pub const getauxval = if (extern_getauxval) struct {
523
}.getauxval else getauxvalImpl;
524
525
fn getauxvalImpl(index: usize) callconv(.c) usize {
526
+ @disableInstrumentation();
527
const auxv = elf_aux_maybe orelse return 0;
528
var i: usize = 0;
529
while (auxv[i].a_type != std.elf.AT_NULL) : (i += 1) {
0 commit comments