diff options
author | Chet Ramey <chet.ramey@case.edu> | 2018-09-17 11:46:57 -0400 |
---|---|---|
committer | Chet Ramey <chet.ramey@case.edu> | 2018-09-17 11:46:57 -0400 |
commit | 9282e182d874a98a25a35cb7b1682b6e45e5af50 (patch) | |
tree | d138c12dbafb38316615e03b331bc6964d75d624 /jobs.h | |
parent | b52e30b8dd5bba5aed7b13040c9d4f7a0c1990cc (diff) | |
download | bash-9282e182d874a98a25a35cb7b1682b6e45e5af50.tar.gz |
commit bash-20180914 snapshot
Diffstat (limited to 'jobs.h')
-rw-r--r-- | jobs.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -103,6 +103,7 @@ typedef enum { JNONE = -1, JRUNNING = 1, JSTOPPED = 2, JDEAD = 4, JMIXED = 8 } J #define J_NOHUP 0x08 /* Don't send SIGHUP to job if shell gets SIGHUP. */ #define J_STATSAVED 0x10 /* A process in this job had had status saved via $! */ #define J_ASYNC 0x20 /* Job was started asynchronously */ +#define J_PIPEFAIL 0x40 /* pipefail set when job was started */ #define IS_FOREGROUND(j) ((jobs[j]->flags & J_FOREGROUND) != 0) #define IS_NOTIFIED(j) ((jobs[j]->flags & J_NOTIFIED) != 0) |