commit b0ef8d3610ab18eb499eb351e302ecc3ab5aea78 (tree)
parent fa684bf42ff8b4df31096db3924873cf9433499d
Author: Linus Groh <mail@linusgroh.de>
Date: Fri, 17 Apr 2026 17:54:36 +0100
std.Io.Threaded: serenity does not have wait4
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git 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,
};