mirror of
https://github.com/ziglang/zig.git
synced 2026-01-20 22:35:24 +00:00
os.dup2: handle EBAF
This commit is contained in:
parent
f6367a0751
commit
55c282ed51
@ -663,7 +663,8 @@ pub fn dup2(old_fd: fd_t, new_fd: fd_t) !void {
|
||||
0 => return,
|
||||
EBUSY, EINTR => continue,
|
||||
EMFILE => return error.ProcessFdQuotaExceeded,
|
||||
EINVAL => unreachable,
|
||||
EINVAL => unreachable, // invalid parameters passed to dup2
|
||||
EBADF => unreachable, // always a race condition
|
||||
else => |err| return unexpectedErrno(err),
|
||||
}
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user