diff options
author | Daniel Baumann <mail@daniel-baumann.ch> | 2015-11-07 15:10:42 +0000 |
---|---|---|
committer | Daniel Baumann <mail@daniel-baumann.ch> | 2015-11-07 15:10:42 +0000 |
commit | e2f36dd00ba51cd2e5c1793bfd5327c5d4aba142 (patch) | |
tree | cf7e6fe72f0d01c3f0a275ab3e0aafd266c9dc7e /plzip.h | |
parent | Adding debian version 0.1-1. (diff) | |
download | plzip-e2f36dd00ba51cd2e5c1793bfd5327c5d4aba142.tar.xz plzip-e2f36dd00ba51cd2e5c1793bfd5327c5d4aba142.zip |
Merging upstream version 0.2.
Signed-off-by: Daniel Baumann <mail@daniel-baumann.ch>
Diffstat (limited to 'plzip.h')
-rw-r--r-- | plzip.h | 26 |
1 files changed, 14 insertions, 12 deletions
@@ -1,6 +1,6 @@ /* Plzip - A parallel version of the lzip data compressor Copyright (C) 2009 Laszlo Ersek. - Copyright (C) 2009 Antonio Diaz Diaz. + Copyright (C) 2009, 2010 Antonio Diaz Diaz. This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -16,15 +16,17 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. */ -struct Plzip_arg -{ - unsigned num_worker, - num_slot, - clidx; - int print_cctrs, - infd, - outfd; -}; +struct Muxer_arg + { + int dictionary_size; + int match_len_limit; + int num_workers; + int num_slots; + int debug_level; + int infd; + int outfd; + }; -void * -plzip_wrap(void *v_arg); +void * muxer( void * arg ); + +extern int verbosity; |