diff options
| author | Alex Rønne Petersen <alex@alexrp.com> | 2025-10-10 14:04:02 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-10-10 14:04:02 +0200 |
| commit | f010a3131976b2e85aadccaaeda5c03d2288849f (patch) | |
| tree | 81a24e3f4113356f994dc8a214b2f6fe379d2662 /lib/std/os/linux/aarch64.zig | |
| parent | 07b6dbf8cae53d1e7a0c43cf514bb9286c3fd09e (diff) | |
| parent | 36dbe66cf4499e4a8f656bdf4629ec1623b345c1 (diff) | |
| download | zig-f010a3131976b2e85aadccaaeda5c03d2288849f.tar.gz zig-f010a3131976b2e85aadccaaeda5c03d2288849f.zip | |
Merge pull request #25516 from alexrp/std-debug
`std.debug`: greatly expand target support for segfault handling/unwinding, and remove public `ucontext_t` completely
Diffstat (limited to 'lib/std/os/linux/aarch64.zig')
| -rw-r--r-- | lib/std/os/linux/aarch64.zig | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/lib/std/os/linux/aarch64.zig b/lib/std/os/linux/aarch64.zig index 6538e1f175..4888a9eda3 100644 --- a/lib/std/os/linux/aarch64.zig +++ b/lib/std/os/linux/aarch64.zig @@ -241,23 +241,4 @@ pub const timezone = extern struct { dsttime: i32, }; -pub const mcontext_t = extern struct { - fault_address: usize, - regs: [31]usize, - sp: usize, - pc: usize, - pstate: usize, - // Make sure the field is correctly aligned since this area - // holds various FP/vector registers - reserved1: [256 * 16]u8 align(16), -}; - -pub const ucontext_t = extern struct { - flags: usize, - link: ?*ucontext_t, - stack: stack_t, - sigmask: [1024 / @bitSizeOf(c_ulong)]c_ulong, // Currently a libc-compatible (1024-bit) sigmask - mcontext: mcontext_t, -}; - pub const Elf_Symndx = u32; |
