authorgravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2025-12-01 17:47:47-08:00
committergravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2025-12-01 19:17:52-08:00
log54a84964f8e3cd015688c6929612f7438b7e9553
treec90fc1494170fe8603fc761ac5106f088d01b21d
parent57f5de5b7703f9d27e8c12ca71e2db32cab43cf3

std.os.linux: SIG enum is non-exhaustive


1 files changed, 3 insertions(+), 0 deletions(-)

lib/std/os/linux.zig+3
......@@ -3771,6 +3771,7 @@ pub const SIG = if (is_mips) enum(u32) {
37713771 PROF = 29,
37723772 XCPU = 30,
37733773 XFZ = 31,
3774 _,
37743775} else if (is_sparc) enum(u32) {
37753776 pub const BLOCK = 1;
37763777 pub const UNBLOCK = 2;
......@@ -3816,6 +3817,7 @@ pub const SIG = if (is_mips) enum(u32) {
38163817 LOST = 29,
38173818 USR1 = 30,
38183819 USR2 = 31,
3820 _,
38193821} else enum(u32) {
38203822 pub const BLOCK = 0;
38213823 pub const UNBLOCK = 1;
......@@ -3859,6 +3861,7 @@ pub const SIG = if (is_mips) enum(u32) {
38593861 IO = 29,
38603862 PWR = 30,
38613863 SYS = 31,
3864 _,
38623865};
38633866
38643867pub const kernel_rwf = u32;