Home
last modified time | relevance | path

Searched refs:F_AMPERSAND (Results 1 – 5 of 5) sorted by relevance

/openbsd/bin/csh/
H A Dsem.c74 if (t->t_dflg & F_AMPERSAND) in execute()
189 (F_PIPEOUT | F_AMPERSAND | F_NICE | F_NOHUP)))) || in execute()
196 t->t_dflg & (F_REPEAT | F_AMPERSAND) || bifunc) { in execute()
215 else if (pid != 0 && (t->t_dflg & F_AMPERSAND)) in execute()
357 if ((t->t_dflg & F_AMPERSAND) == 0) in execute()
397 (t->t_dflg & (F_PIPEIN | F_AMPERSAND | F_STDERR | F_NOINTERRUPT)); in execute()
400 (F_PIPEOUT | F_AMPERSAND | F_NOFORK | F_NOINTERRUPT)); in execute()
413 if (t->t_dcar->t_dflg & F_AMPERSAND && t->t_dcdr && in execute()
414 (t->t_dcdr->t_dflg & F_AMPERSAND) == 0) in execute()
H A Dparse.c271 t->t_dflg = F_AMPERSAND | F_NOINTERRUPT; in syn0()
276 t1->t_dflg |= F_AMPERSAND | F_NOINTERRUPT; in syn0()
H A Dcsh.h290 #define F_AMPERSAND (1<<0) /* executes in background */ macro
H A Dfunc.c74 if (t->t_dflg & F_AMPERSAND) { in isbfunc()
75 t->t_dflg &= ~F_AMPERSAND; in isbfunc()
H A Dproc.c459 pp->p_flags = t->t_dflg & F_AMPERSAND ? PRUNNING : PRUNNING | PFOREGND; in palloc()