From: Ian Jackson Date: Tue, 1 Jun 2010 19:14:40 +0000 (+0100) Subject: Merge branch 'master' of /home/ian/public-git/innduct X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ian/git?p=innduct.git;a=commitdiff_plain;h=65ad91cb4072e297a97b06a791acd7e071e0dff6;hp=966cc2f90841aa0d44eac8322a9f953b5cda84a9 Merge branch 'master' of /home/ian/public-git/innduct --- diff --git a/infile.c b/infile.c index a8f0558..73e291b 100644 --- a/infile.c +++ b/infile.c @@ -59,6 +59,8 @@ InputFile *open_input_file(const char *path) { LIST_INIT(ipf->queue); strcpy(ipf->path, path); + dbg("started input file %p %s", ipf, path); + return ipf; } diff --git a/statemc.c b/statemc.c index 8d3e728..3ce00f4 100644 --- a/statemc.c +++ b/statemc.c @@ -286,6 +286,7 @@ void statemc_check_backlog_done(void) { InputFile *ipf= backlog_input_file; if (!inputfile_is_done(ipf)) return; + dbg("backlog file %p %s complete", ipf, ipf->path); backlog_accumulate_counts(ipf); close_input_file(ipf); if (unlink(ipf->path)) {