diff options
Diffstat (limited to 'lzip.h')
-rw-r--r-- | lzip.h | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -1,4 +1,4 @@ -/* Plzip - A parallel compressor compatible with lzip +/* Plzip - Parallel compressor compatible with lzip Copyright (C) 2009, 2010, 2011, 2012, 2013 Antonio Diaz Diaz. This program is free software: you can redistribute it and/or modify @@ -196,10 +196,13 @@ int decompress( int num_workers, const int infd, const int outfd, // defined in main.cc extern int verbosity; -void fatal( const int retval = 1 ); // terminate the program +void cleanup_and_fail( const int retval = 1 ); // terminate the program void show_error( const char * const msg, const int errcode = 0, const bool help = false ); void internal_error( const char * const msg ); +void show_progress( const int packet_size, + const Pretty_print * const p = 0, + const struct stat * const in_statsp = 0 ); class Slot_tally |