From 98af7f34e96ff8e2caaaf579df6ad136bb17f848 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alex=20R=C3=B8nne=20Petersen?= Date: Mon, 6 Oct 2025 18:12:46 +0200 Subject: [PATCH] std.os.linux: minor NFC corrections to hexagon ucontext_t and mcontext_t --- lib/std/os/linux/hexagon.zig | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/std/os/linux/hexagon.zig b/lib/std/os/linux/hexagon.zig index af3bf81b12..bf6c6cb162 100644 --- a/lib/std/os/linux/hexagon.zig +++ b/lib/std/os/linux/hexagon.zig @@ -254,13 +254,13 @@ pub const mcontext_t = extern struct { badva: u32, cs0: u32, cs1: u32, - _pad2: u32, + _pad1: u32, }; pub const ucontext_t = extern struct { - flags: usize, + flags: u32, link: ?*ucontext_t, stack: stack_t, mcontext: mcontext_t, - sigmask: [2]u32, + sigmask: sigset_t, };