From e3573e447c9df3dc2657df423276aca32d51d114 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sat, 7 Nov 2015 16:10:35 +0100 Subject: Adding upstream version 0.2. Signed-off-by: Daniel Baumann --- plzip.h | 26 ++++++++++++++------------ 1 file changed, 14 insertions(+), 12 deletions(-) (limited to 'plzip.h') diff --git a/plzip.h b/plzip.h index d59a90c..f23152b 100644 --- a/plzip.h +++ b/plzip.h @@ -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 . */ -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; -- cgit v1.2.3