std.Io.Threaded: serenity does not have wait4

This commit is contained in:
Linus Groh
2026-04-17 17:54:36 +01:00
committed by Alex Rønne Petersen
parent e2d0ed235e
commit ac9bbe4b37
+1 -1
View File
@@ -2009,7 +2009,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,
};