| author | |
| committer | |
| log | 5db9eaa8516600425d5d1b9aab0f9a9dbf235cd5 |
| tree | 4250e31aac60dcadea856e0227f7222ae63f41ff |
| parent | a8fea09cd59601bf2eb84643291be196c4ef2a2f |
| signature |
Like NetBSD, illumos has no futexes.
ref #257601 files changed, 1 insertions(+), 1 deletions(-)
lib/std/Io/Threaded.zig+1-1| ... | ... | @@ -5898,7 +5898,7 @@ pub fn futexWake(ptr: *const std.atomic.Value(u32), max_waiters: u32) void { |
| 5898 | 5898 | /// It can also block threads until the value is set with cancelation via timed |
| 5899 | 5899 | /// waits. Statically initializable; four bytes on all targets. |
| 5900 | 5900 | pub const ResetEvent = switch (native_os) { |
| 5901 | .netbsd => ResetEventPosix, | |
| 5901 | .illumos, .netbsd => ResetEventPosix, | |
| 5902 | 5902 | else => ResetEventFutex, |
| 5903 | 5903 | }; |
| 5904 | 5904 |