diff options
author | Daniel Baumann <mail@daniel-baumann.ch> | 2015-11-07 15:18:51 +0000 |
---|---|---|
committer | Daniel Baumann <mail@daniel-baumann.ch> | 2015-11-07 15:18:51 +0000 |
commit | 06eb4a907699aae4a22edb4d178b8f8e10c9d5d8 (patch) | |
tree | f563bc6317b977d1a88d08e8ec5b84becf3a6469 /plzip.h | |
parent | Adding upstream version 0.5. (diff) | |
download | plzip-06eb4a907699aae4a22edb4d178b8f8e10c9d5d8.tar.xz plzip-06eb4a907699aae4a22edb4d178b8f8e10c9d5d8.zip |
Adding upstream version 0.6.upstream/0.6
Signed-off-by: Daniel Baumann <mail@daniel-baumann.ch>
Diffstat (limited to '')
-rw-r--r-- | plzip.h | 14 |
1 files changed, 6 insertions, 8 deletions
@@ -60,8 +60,6 @@ void xunlock( pthread_mutex_t * mutex ); void xwait( pthread_cond_t * cond, pthread_mutex_t * mutex ); void xsignal( pthread_cond_t * cond ); void xbroadcast( pthread_cond_t * cond ); -void xcreate( pthread_t *thread, void *(*routine)(void *), void *arg ); -void xjoin( pthread_t thread ); class Slot_tally @@ -90,7 +88,7 @@ public: xlock( &mutex ); ++check_counter; while( num_free <= 0 ) - { ++wait_counter; xwait( &slot_av, &mutex ); } + { ++wait_counter; xwait( &slot_av, &mutex ); ++check_counter; } --num_free; xunlock( &mutex ); } @@ -121,9 +119,9 @@ int decompress( const int num_workers, const int num_slots, extern int verbosity; -void show_error( const char * msg, const int errcode = 0, const bool help = false ) throw(); -void internal_error( const char * msg ); -int readblock( const int fd, uint8_t * buf, const int size ) throw(); -int writeblock( const int fd, const uint8_t * buf, const int size ) throw(); - void fatal(); // Terminate the process + +void show_error( const char * const msg, const int errcode = 0, const bool help = false ) throw(); +void internal_error( const char * const msg ); +int readblock( const int fd, uint8_t * const buf, const int size ) throw(); +int writeblock( const int fd, const uint8_t * const buf, const int size ) throw(); |