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 fa684bf42f
commit b0ef8d3610
+1 -1
View File
@@ -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,
};