summaryrefslogtreecommitdiffstats
path: root/src/deps_log.h
diff options
context:
space:
mode:
authorJan Niklas Hasse <jhasse@bixense.com>2019-01-30 18:57:52 (GMT)
committerJan Niklas Hasse <jhasse@bixense.com>2019-01-30 18:57:52 (GMT)
commit6d5a4b9eb973e9d82d63f8f9a421fad97d20e6d0 (patch)
treeb427025388b026f169a135343c8a275379314127 /src/deps_log.h
parent253e94c1fa511704baeb61cf69995bbf09ba435e (diff)
parent0c158431f30a14d771e5c82c1e69eff7c69a08ce (diff)
downloadNinja-6d5a4b9eb973e9d82d63f8f9a421fad97d20e6d0.zip
Ninja-6d5a4b9eb973e9d82d63f8f9a421fad97d20e6d0.tar.gz
Ninja-6d5a4b9eb973e9d82d63f8f9a421fad97d20e6d0.tar.bz2
Merge branch 'master' into release
Diffstat (limited to 'src/deps_log.h')
-rw-r--r--src/deps_log.h8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/deps_log.h b/src/deps_log.h
index cec0257..3812a28 100644
--- a/src/deps_log.h
+++ b/src/deps_log.h
@@ -57,7 +57,9 @@ struct State;
/// one's complement of the expected index of the record (to detect
/// concurrent writes of multiple ninja processes to the log).
/// dependency records are an array of 4-byte integers
-/// [output path id, output path mtime, input path id, input path id...]
+/// [output path id,
+/// output path mtime (lower 4 bytes), output path mtime (upper 4 bytes),
+/// input path id, input path id...]
/// (The mtime is compared against the on-disk output path mtime
/// to verify the stored data is up-to-date.)
/// If two records reference the same output the latter one in the file
@@ -75,10 +77,10 @@ struct DepsLog {
// Reading (startup-time) interface.
struct Deps {
- Deps(int mtime, int node_count)
+ Deps(int64_t mtime, int node_count)
: mtime(mtime), node_count(node_count), nodes(new Node*[node_count]) {}
~Deps() { delete [] nodes; }
- int mtime;
+ TimeStamp mtime;
int node_count;
Node** nodes;
};