Home | History | Annotate | Download | only in src

Lines Matching defs:Proc

40 typedef struct proc Proc;
41 struct proc {
42 Proc *next; /* next process in pipeline (if any) */
47 char command[64 - (ALLOC_SIZE + sizeof(Proc *) + sizeof(pid_t) +
79 Proc *proc_list; /* process list */
80 Proc *last_proc; /* last process in list */
149 static Proc *new_proc(void);
219 proc_errorlevel(Proc *p)
388 static Proc *last_proc;
394 Proc *p;
589 rv = j_waitj(j, jwflags, "jw:last proc");
765 Proc *p;
1041 Proc *p;
1197 Proc *p = j->proc_list;
1257 Proc *p = NULL;
1358 Proc *p;
1460 Proc *p;
1576 Proc *p;
1663 static Proc *free_procs;
1699 static Proc *
1702 Proc *p;
1708 p = alloc(sizeof(Proc), APERM);
1722 Proc *p, *tmp;
1738 /* free up proc structures */
1805 Proc *p;