authorgravatar for mail@linusgroh.deLinus Groh <mail@linusgroh.de> 2026-04-17 17:54:36+01:00
committergravatar for alex@alexrp.comAlex Rønne Petersen <alex@alexrp.com> 2026-04-17 21:32:22+02:00
logb0ef8d3610ab18eb499eb351e302ecc3ab5aea78
tree5b95e0d5176ee8a67ccdc89ce3aaef9709b53657
parentfa684bf42ff8b4df31096db3924873cf9433499d

std.Io.Threaded: serenity does not have wait4


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

lib/std/Io/Threaded.zig+1-1
...@@ -2005,7 +2005,7 @@ const have_waitid = switch (native_os) {...@@ -2005,7 +2005,7 @@ const have_waitid = switch (native_os) {
20052005
2006const have_wait4 = switch (native_os) {2006const have_wait4 = switch (native_os) {
2007 .linux => @hasField(std.os.linux.SYS, "wait4"),2007 .linux => @hasField(std.os.linux.SYS, "wait4"),
2008 .dragonfly, .freebsd, .netbsd, .openbsd, .illumos, .serenity, .driverkit, .ios, .maccatalyst, .macos, .tvos, .visionos, .watchos => true,2008 .dragonfly, .freebsd, .netbsd, .openbsd, .illumos, .driverkit, .ios, .maccatalyst, .macos, .tvos, .visionos, .watchos => true,
2009 else => false,2009 else => false,
2010};2010};
20112011