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/mips.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/mips.zig')
| -rw-r--r-- | lib/std/os/linux/mips.zig | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/lib/std/os/linux/mips.zig b/lib/std/os/linux/mips.zig index f34eb0edfb..6412c847bd 100644 --- a/lib/std/os/linux/mips.zig +++ b/lib/std/os/linux/mips.zig @@ -348,32 +348,3 @@ pub const timezone = extern struct { }; pub const Elf_Symndx = u32; - -pub const mcontext_t = extern struct { - _regmask: u32, - _status: u32, - pc: u64, - regs: [32]u64, - fpregs: [32]f64, - acx: u32, - fpc_csr: u32, - _fpc_eir: u32, - used_math: u32, - dsp: u32, - mdhi: u64, - mdlo: u64, - hi1: u32, - lo1: u32, - hi2: u32, - lo2: u32, - hi3: u32, - lo3: u32, -}; - -pub const ucontext_t = extern struct { - flags: u32, - link: ?*ucontext_t, - stack: stack_t, - mcontext: mcontext_t, - sigmask: sigset_t, -}; |
