summaryrefslogtreecommitdiff
path: root/jobs.h
diff options
context:
space:
mode:
authorChet Ramey <chet.ramey@case.edu>2018-09-17 11:46:57 -0400
committerChet Ramey <chet.ramey@case.edu>2018-09-17 11:46:57 -0400
commit9282e182d874a98a25a35cb7b1682b6e45e5af50 (patch)
treed138c12dbafb38316615e03b331bc6964d75d624 /jobs.h
parentb52e30b8dd5bba5aed7b13040c9d4f7a0c1990cc (diff)
downloadbash-9282e182d874a98a25a35cb7b1682b6e45e5af50.tar.gz
commit bash-20180914 snapshot
Diffstat (limited to 'jobs.h')
-rw-r--r--jobs.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/jobs.h b/jobs.h
index 6ebaf4de..de939c0d 100644
--- a/jobs.h
+++ b/jobs.h
@@ -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)