Lines Matching defs:job
47 struct job struct
49 struct job *j_nxtp; /* next job in job ID order */ argument
50 struct job *j_curp; /* next job in job currency order */ argument
51 struct termios j_stty; /* termio save area when job stops */ argument
52 pid_t j_pid; /* job leader's process ID */ argument
53 pid_t j_pgid; /* job's process group ID */ argument
54 pid_t j_tgid; /* job's foreground process group ID */ argument
55 uint_t j_jid; /* job ID */ argument
58 char *j_pwd; /* job's working directory */ argument
59 char *j_cmd; /* cmd used to invoke this job */ argument
113 str2job(char *cmd, char *job, int mustbejob) in str2job()