Home | History | Annotate | Download | only in src

Lines Matching defs:Proc

41 typedef struct proc Proc;
42 struct proc {
43 Proc *next; /* next process in pipeline (if any) */
48 char command[256 - (ALLOC_SIZE + sizeof(Proc *) + sizeof(pid_t) +
79 Proc *proc_list; /* process list */
80 Proc *last_proc; /* last process in list */
146 static Proc *new_proc(void);
216 proc_errorlevel(Proc *p)
385 static Proc *last_proc;
391 Proc *p;
587 rv = j_waitj(j, jwflags, "jw:last proc");
763 Proc *p;
1039 Proc *p;
1195 Proc *p = j->proc_list;
1256 Proc *p = NULL;
1357 Proc *p;
1459 Proc *p;
1575 Proc *p;
1662 static Proc *free_procs;
1698 static Proc *
1701 Proc *p;
1707 p = alloc(sizeof(Proc), APERM);
1721 Proc *p, *tmp;
1737 /* free up proc structures */
1804 Proc *p;