commit f3adbe249b0dfad91318916142a33619232a968f (tree)
parent 8c7eb8c8da9af21519c7f61aa0961d79cc6266ea
Author: Andrew Kelley <andrew@ziglang.org>
Date: Mon, 31 Jul 2023 11:10:40 -0700
Revert "std.c: openbsd sigcontext/ucontext for arm64."
This reverts commit 1585ed637d101ed16adb6b9ebdfa465299bfdb13.
Diffstat:
1 file changed, 0 insertions(+), 12 deletions(-)
diff --git a/lib/std/c/openbsd.zig b/lib/std/c/openbsd.zig
@@ -1127,18 +1127,6 @@ pub usingnamespace switch (builtin.cpu.arch) {
sc_cookie: c_long,
};
},
- .aarch64 => struct {
- pub const ucontext_t = extern struct {
- __sc_unused: c_int,
- sc_mask: c_int,
- sc_sp: c_ulong,
- sc_lr: c_ulong,
- sc_elr: c_ulong,
- sc_spsr: c_ulong,
- sc_x: [30]c_ulong,
- sc_cookie: c_long,
- };
- },
else => struct {},
};