Function setpgid [src]
Prototype
pub fn setpgid(pid: pid_t, pgid: pid_t) usize
Parameters
pid: pid_t
pgid: pid_t
Source
pub fn setpgid(pid: pid_t, pgid: pid_t) usize {
return syscall2(.setpgid, @intCast(pid), @intCast(pgid));
}
pub fn setpgid(pid: pid_t, pgid: pid_t) usize
pid: pid_t
pgid: pid_t
pub fn setpgid(pid: pid_t, pgid: pid_t) usize {
return syscall2(.setpgid, @intCast(pid), @intCast(pgid));
}