Function setpgid [src]

Prototype

pub fn setpgid(pid: pid_t, pgid: pid_t) usize

Parameters

pid: pid_tpgid: pid_t

Source

pub fn setpgid(pid: pid_t, pgid: pid_t) usize { return syscall2(.setpgid, @intCast(pid), @intCast(pgid)); }