Home
last modified time | relevance | path

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

/freebsd/contrib/tcsh/
H A Dsh.sem.c183 if (t->t_dflg & F_AMPERSAND) in execute()
381 (F_PIPEOUT | F_AMPERSAND | F_NICE | F_NOHUP | F_HUP)))) || in execute()
389 t->t_dflg & (F_REPEAT | F_AMPERSAND) || bifunc) in execute()
410 else if (pid != 0 && (t->t_dflg & F_AMPERSAND)) in execute()
622 if ((t->t_dflg & F_AMPERSAND) == 0) in execute()
700 (F_PIPEOUT | F_AMPERSAND | F_NOFORK | F_NOINTERRUPT | F_BACKQ)); in execute()
703 (F_PIPEIN | F_AMPERSAND | F_STDERR | F_NOINTERRUPT | F_BACKQ)); in execute()
707 (F_PIPEIN | F_AMPERSAND | F_STDERR | F_NOINTERRUPT | F_BACKQ)); in execute()
710 (F_PIPEOUT | F_AMPERSAND | F_NOFORK | F_NOINTERRUPT | F_BACKQ)); in execute()
722 if (t->t_dcar->t_dflg & F_AMPERSAND && t->t_dcdr && in execute()
[all …]
H A Dsh.parse.c264 t->t_dflg = F_AMPERSAND | F_NOINTERRUPT; in syn0()
269 t1->t_dflg |= F_AMPERSAND | F_NOINTERRUPT; in syn0()
H A Dsh.h898 #define F_AMPERSAND (1<<0) /* executes in background */ macro
H A Dsh.func.c88 if (t->t_dflg & F_AMPERSAND) { in isbfunc()
89 t->t_dflg &= ~F_AMPERSAND; in isbfunc()
H A Dsh.proc.c765 pp->p_flags = ((t->t_dflg & F_AMPERSAND) ? 0 : PFOREGND) | PRUNNING; in palloc()