summaryrefslogtreecommitdiff
path: root/ccache.h
diff options
context:
space:
mode:
authorJoel Rosdahl <joel@rosdahl.net>2018-01-10 21:10:45 +0100
committerJoel Rosdahl <joel@rosdahl.net>2018-01-10 21:10:45 +0100
commit4eabd959d20254cd1548a0f53660251d55c6db43 (patch)
tree34c30f3ea37d62ab9ebeff05118135a44a47d1c5 /ccache.h
parentf5c4b9428cd67594d0d85729aaa5f760ff02752c (diff)
parentab7407f765371ad3188d517d035d12c986ae0347 (diff)
downloadccache-4eabd959d20254cd1548a0f53660251d55c6db43.tar.gz
Merge branch '3.3-maint'
* 3.3-maint: Document how automatic cleanup works Make ccache -c/--cleanup not take limit_multiple into account test: Fix printing of failure reason with glob characters Fix grammar in cleanup_* function names test: Unset all CCACHE variables in environment cleanup: Improve logging test: Check more cases of path normalization Don't overwrite cached .d file with a version with absolute paths test: Fix verbose printing of test case name with space Update NEWS Don't use cache when building precompiled header with changed deps Always use include DEFAULT_SLOPPINESS when overriding CCACHE_SLOPPINESS
Diffstat (limited to 'ccache.h')
-rw-r--r--ccache.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/ccache.h b/ccache.h
index b2829074..47dcc618 100644
--- a/ccache.h
+++ b/ccache.h
@@ -220,8 +220,8 @@ void exitfn_call(void);
// ----------------------------------------------------------------------------
// cleanup.c
-void cleanup_dir(struct conf *conf, const char *dir);
-void cleanup_all(struct conf *conf);
+void clean_up_dir(struct conf *conf, const char *dir, float limit_multiple);
+void clean_up_all(struct conf *conf);
void wipe_all(struct conf *conf);
// ----------------------------------------------------------------------------
@@ -241,6 +241,7 @@ void lockfile_release(const char *path);
// ccache.c
extern time_t time_of_compilation;
+extern bool output_is_precompiled_header;
void block_signals(void);
void unblock_signals(void);
bool cc_process_args(struct args *args, struct args **preprocessor_args,