summaryrefslogtreecommitdiff
path: root/dep.h
diff options
context:
space:
mode:
authorPaul Smith <psmith@gnu.org>1999-07-09 22:55:44 +0000
committerPaul Smith <psmith@gnu.org>1999-07-09 22:55:44 +0000
commit8df9d5402017dbc6af67e9baa1c0baac5c59f4ff (patch)
tree20eb661a53f89abae673007470e9b1e5a569689e /dep.h
parent9035aa27b7485bfdc12f8c577208a20a8b3747b6 (diff)
downloadgunmake-8df9d5402017dbc6af67e9baa1c0baac5c59f4ff.tar.gz
* Fixed error rebuilding makefiles with -j>1
* Fixed problem with job pipe and -j>1 when waiting on -l loads.
Diffstat (limited to 'dep.h')
-rw-r--r--dep.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/dep.h b/dep.h
index ca8112f..90999b6 100644
--- a/dep.h
+++ b/dep.h
@@ -38,7 +38,8 @@ struct dep
struct dep *next;
char *name;
struct file *file;
- int changed;
+ unsigned short changed;
+ unsigned short deferred; /* Only used in update_goal_chain(). */
};