diff options
author | Daniel Baumann <mail@daniel-baumann.ch> | 2016-06-01 14:15:38 +0000 |
---|---|---|
committer | Daniel Baumann <mail@daniel-baumann.ch> | 2016-06-01 14:15:38 +0000 |
commit | b74ecd2cc2094c9644123e48ac3e2400fd8a3674 (patch) | |
tree | 8dbdba84d3f38fb2ea33a5f18fea7d42d16e3f8d /dec_stdout.cc | |
parent | Adding upstream version 1.4. (diff) | |
download | plzip-f4a51888079416a6f2b2a0623720feb37e608ebb.tar.xz plzip-f4a51888079416a6f2b2a0623720feb37e608ebb.zip |
Adding upstream version 1.5.upstream/1.5
Signed-off-by: Daniel Baumann <mail@daniel-baumann.ch>
Diffstat (limited to 'dec_stdout.cc')
-rw-r--r-- | dec_stdout.cc | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/dec_stdout.cc b/dec_stdout.cc index 798148e..620075e 100644 --- a/dec_stdout.cc +++ b/dec_stdout.cc @@ -1,6 +1,6 @@ /* Plzip - Parallel compressor compatible with lzip Copyright (C) 2009 Laszlo Ersek. - Copyright (C) 2009-2015 Antonio Diaz Diaz. + Copyright (C) 2009-2016 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 @@ -76,14 +76,14 @@ public: opacket_queues( workers ), num_working( workers ), num_workers( workers ), out_slots( slots ), slot_av( workers ) { - xinit( &omutex ); xinit( &oav_or_exit ); - for( unsigned i = 0; i < slot_av.size(); ++i ) xinit( &slot_av[i] ); + xinit_mutex( &omutex ); xinit_cond( &oav_or_exit ); + for( unsigned i = 0; i < slot_av.size(); ++i ) xinit_cond( &slot_av[i] ); } ~Packet_courier() { - for( unsigned i = 0; i < slot_av.size(); ++i ) xdestroy( &slot_av[i] ); - xdestroy( &oav_or_exit ); xdestroy( &omutex ); + for( unsigned i = 0; i < slot_av.size(); ++i ) xdestroy_cond( &slot_av[i] ); + xdestroy_cond( &oav_or_exit ); xdestroy_mutex( &omutex ); } void worker_finished() |