Function setpgid [src]

Prototype

pub fn setpgid(pid: pid_t, pgid: pid_t) SetPgidError!void

Parameters

pid: pid_tpgid: pid_t

Possible Errors

InvalidProcessGroupId
PermissionDenied
ProcessAlreadyExec
ProcessNotFound
Unexpected UnexpectedError

The Operating System returned an undocumented error code.

This error is in theory not possible, but it would be better to handle this error than to invoke undefined behavior.

When this error code is observed, it usually means the Zig Standard Library needs a small patch to add the error code to the error set for the respective function.

Source

pub fn setpgid(pid: pid_t, pgid: pid_t) SetPgidError!void { switch (errno(system.setpgid(pid, pgid))) { .SUCCESS => return, .ACCES => return error.ProcessAlreadyExec, .INVAL => return error.InvalidProcessGroupId, .PERM => return error.PermissionDenied, .SRCH => return error.ProcessNotFound, else => |err| return unexpectedErrno(err), } }