chiark / gitweb /
Merge branch 'master' of /home/ian/public-git/innduct
authorIan Jackson <ian@chiark.greenend.org.uk>
Tue, 1 Jun 2010 19:14:40 +0000 (20:14 +0100)
committerIan Jackson <ian@chiark.greenend.org.uk>
Tue, 1 Jun 2010 19:14:40 +0000 (20:14 +0100)
infile.c
statemc.c

index a8f0558cfaa67e5d2d94257a1b8cb8409e5e396d..73e291b839dcc6b1c82e809d00e602ed956a8465 100644 (file)
--- 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;
 }
 
index 8d3e728c89a88d4258e36865f2967fe64351d1b1..3ce00f483a6d35e6e825ec538b832a1571778120 100644 (file)
--- 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)) {