summaryrefslogtreecommitdiff
path: root/job.h
diff options
context:
space:
mode:
authorPaul Smith <psmith@gnu.org>1999-04-25 04:30:55 +0000
committerPaul Smith <psmith@gnu.org>1999-04-25 04:30:55 +0000
commitfc0fe4103ac983d88b83dad0daf97664ffa8e04b (patch)
tree7f2a029706a5547af16132ae451a673936b353bf /job.h
parent7f3ffd401903e04637c0e822e152e8dc632264e5 (diff)
downloadgunmake-fc0fe4103ac983d88b83dad0daf97664ffa8e04b.tar.gz
* Add new jobserver feature.
* Small updates to the manual * E.Zaretskii fix for new DJGPP version.
Diffstat (limited to 'job.h')
-rw-r--r--job.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/job.h b/job.h
index 4f2a3ae..4c5e7e5 100644
--- a/job.h
+++ b/job.h
@@ -1,5 +1,5 @@
/* Definitions for managing subprocesses in GNU Make.
-Copyright (C) 1992, 1993, 1996 Free Software Foundation, Inc.
+Copyright (C) 1992, 1993, 1996, 1999 Free Software Foundation, Inc.
This file is part of GNU Make.
GNU Make is free software; you can redistribute it and/or modify
@@ -39,13 +39,14 @@ struct child
int efn; /* Completion event flag number */
int cstatus; /* Completion status */
#endif
+ char *sh_batch_file; /* Script file for shell commands */
unsigned int remote:1; /* Nonzero if executing remotely. */
unsigned int noerror:1; /* Nonzero if commands contained a `-'. */
unsigned int good_stdin:1; /* Nonzero if this child has a good stdin. */
unsigned int deleted:1; /* Nonzero if targets have been deleted. */
- char *sh_batch_file; /* Script file for shell commands */
+ char job_token; /* The token read from the job pipe. */
};
extern struct child *children;