X-Git-Url: https://git.dogcows.com/gitweb?a=blobdiff_plain;f=src%2Fcommon.h;h=28a222302e6a553348561d3f22c863bd07c02d7d;hb=42d180b24eb1b0f7d7fe13809f086e6c5917461c;hp=99c6f6fc2f1a7174da8db7ab89975b320fa92d15;hpb=8c10111c66c83092f53a8ed029552afd780a8bca;p=chaz%2Ftar diff --git a/src/common.h b/src/common.h index 99c6f6f..28a2223 100644 --- a/src/common.h +++ b/src/common.h @@ -289,8 +289,12 @@ GLOBAL int archive; /* Nonzero when outputting to /dev/null. */ GLOBAL bool dev_null_output; -/* Timestamp for when we started execution. */ -GLOBAL struct timespec start_time; +/* Timestamps: */ +GLOBAL struct timespec start_time; /* when we started execution */ +GLOBAL struct timespec volume_start_time; /* when the current volume was + opened*/ +GLOBAL struct timespec last_stat_time; /* when the statistics was last + computed */ GLOBAL struct tar_stat_info current_stat_info; @@ -381,7 +385,7 @@ void flush_write (void); void flush_archive (void); void init_volume_number (void); void open_archive (enum access_mode); -void print_total_written (void); +void print_total_stats (void); void reset_eof (void); void set_next_block_after (union block *); void clear_read_error_count (void);