mirror of
https://github.com/ckolivas/lrzip.git
synced 2026-04-05 06:15:28 +00:00
fix-undefined-mutex-behavior-rename-stream-variable.
Patch by <mike@zentific.com>
This commit is contained in:
parent
643054ae22
commit
a8dcecd721
2 changed files with 44 additions and 37 deletions
4
stream.h
4
stream.h
|
|
@ -33,8 +33,8 @@ void close_streamout_threads(rzip_control *control);
|
|||
void *open_stream_out(rzip_control *control, int f, unsigned int n, i64 chunk_limit, char cbytes);
|
||||
void *open_stream_in(rzip_control *control, int f, int n);
|
||||
void flush_buffer(rzip_control *control, struct stream_info *sinfo, int stream);
|
||||
int write_stream(rzip_control *control, void *ss, int stream, uchar *p, i64 len);
|
||||
i64 read_stream(rzip_control *control, void *ss, int stream, uchar *p, i64 len);
|
||||
int write_stream(rzip_control *control, void *ss, int streamno, uchar *p, i64 len);
|
||||
i64 read_stream(rzip_control *control, void *ss, int streamno, uchar *p, i64 len);
|
||||
int close_stream_out(rzip_control *control, void *ss);
|
||||
int close_stream_in(void *ss);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue