summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoel Rosdahl <joel@rosdahl.net>2017-06-15 20:24:38 +0200
committerJoel Rosdahl <joel@rosdahl.net>2017-06-15 20:29:26 +0200
commitc85a64283f8c2ebbe6e01f608fafdd28d833f776 (patch)
tree5ab586e16d4b58978c52776986e830d547f893dd
parentcf4c4bc053740aa4d9526b1efef65245f9852ed2 (diff)
downloadccache-c85a64283f8c2ebbe6e01f608fafdd28d833f776.tar.gz
Tweak comment
-rw-r--r--ccache.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/ccache.c b/ccache.c
index 4d7d8052..265c5098 100644
--- a/ccache.c
+++ b/ccache.c
@@ -560,9 +560,9 @@ remember_include_file(char *path, struct mdfour *cpp_hash, bool system)
}
}
- // The comparison using >= is intentional, due to a possible race
- // between starting compilation and writing the include file.
- // See https://github.com/ccache/ccache/blob/master/MANUAL.txt
+ // The comparison using >= is intentional, due to a possible race between
+ // starting compilation and writing the include file. See also the notes
+ // under "Performance" in MANUAL.txt.
if (!(conf->sloppiness & SLOPPY_INCLUDE_FILE_MTIME)
&& st.st_mtime >= time_of_compilation) {
cc_log("Include file %s too new", path);