Home | History | Annotate | Download | only in kern

Lines Matching defs:pgid

260  * pgid must be in valid range (EINVAL)
265 * if pgid != pid
266 * there must exist some pid in same session having pgid (EPERM)
277 syscallarg(int) pgid;
280 pid_t targp, pgid;
282 if (SCARG(uap, pgid) < 0)
286 if ((pgid = SCARG(uap, pgid)) == 0)
287 pgid = targp;
289 return proc_enterpgrp(p, targp, pgid, false);