Lines Matching refs:process

65 static struct process *pwfg;
121 static struct process *job_bypid(pid_t);
122 static struct process *job_byjid(int);
126 static struct process *job_unpost(struct process*,int);
127 static void job_unlink(struct process*);
128 static void job_prmsg(struct process*);
129 static struct process *freelist;
132 static struct process dummy;
139 static void job_set(struct process*);
140 static void job_reset(struct process*);
142 static struct process *job_byname(char*);
143 static struct process *job_bystring(char*);
151 static void job_unstop(struct process*);
152 static void job_fgrp(struct process*, int);
184 register struct process *pw,*pwnext; in job_chldtrap()
247 register struct process *pw; in job_reap()
248 struct process *px; in job_reap()
613 register struct process *pw; in job_close()
688 static void job_set(register struct process *pw) in job_set()
705 static void job_reset(register struct process *pw) in job_reset()
734 register struct process *pw; in job_bwait()
763 int job_walk(Sfio_t *file,int (*fun)(struct process*,int),int arg,char *joblist[]) in job_walk() argument
765 register struct process *pw; in job_walk()
768 register struct process *px; in job_walk()
829 int job_terminate(register struct process *pw,register int sig) in job_terminate()
843 int job_list(struct process *pw,register int flag) in job_list()
845 register struct process *px = pw; in job_list()
924 static struct process *job_bystring(register char *ajob) in job_bystring()
926 register struct process *pw=job.pwlist; in job_bystring()
929 return(NIL(struct process*)); in job_bystring()
944 return(NIL(struct process*)); in job_bystring()
951 int job_kill(register struct process *pw,register int sig) in job_kill()
1049 static struct process *job_byname(char *name) in job_byname()
1051 register struct process *pw = job.pwlist; in job_byname()
1052 register struct process *pz = 0; in job_byname()
1057 return(NIL(struct process*)); in job_byname()
1085 register struct process *pw, *px; in job_clear()
1086 register struct process *pwnext; in job_clear()
1107 job.pwlist = NIL(struct process*); in job_clear()
1129 register struct process *pw; in job_post()
1168 pw = new_of(struct process,0); in job_post()
1242 static struct process *job_bypid(pid_t pid) in job_bypid()
1244 register struct process *pw, *px; in job_bypid()
1251 return(NIL(struct process*)); in job_bypid()
1258 static struct process *job_byjid(int jobid) in job_byjid()
1260 register struct process *pw; in job_byjid()
1272 static void job_prmsg(register struct process *pw) in job_prmsg()
1300 register struct process *pw=0,*px; in job_wait()
1494 int job_switch(register struct process *pw,int bgflag) in job_switch()
1558 static void job_fgrp(register struct process *pw, int newgrp) in job_fgrp()
1568 static void job_unstop(register struct process *px) in job_unstop()
1570 register struct process *pw; in job_unstop()
1597 static struct process *job_unpost(register struct process *pwtop,int notify) in job_unpost()
1599 register struct process *pw; in job_unpost()
1641 return((struct process*)0); in job_unpost()
1647 static void job_unlink(register struct process *pw) in job_unlink()
1649 register struct process *px; in job_unlink()
1679 register struct process *pw; in job_alloc()
1795 register struct process *pw, *px, *pwnext; in job_subrestore()