From b0ef8d3610ab18eb499eb351e302ecc3ab5aea78 Mon Sep 17 00:00:00 2001 From: Linus Groh Date: Fri, 17 Apr 2026 17:54:36 +0100 Subject: [PATCH] std.Io.Threaded: serenity does not have wait4 --- lib/std/Io/Threaded.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/std/Io/Threaded.zig b/lib/std/Io/Threaded.zig index 9ab4263ce8..92a0201aa6 100644 --- a/lib/std/Io/Threaded.zig +++ b/lib/std/Io/Threaded.zig @@ -2005,7 +2005,7 @@ const have_waitid = switch (native_os) { const have_wait4 = switch (native_os) { .linux => @hasField(std.os.linux.SYS, "wait4"), - .dragonfly, .freebsd, .netbsd, .openbsd, .illumos, .serenity, .driverkit, .ios, .maccatalyst, .macos, .tvos, .visionos, .watchos => true, + .dragonfly, .freebsd, .netbsd, .openbsd, .illumos, .driverkit, .ios, .maccatalyst, .macos, .tvos, .visionos, .watchos => true, else => false, };