fix signal race (Scott Lamb)

This commit is contained in:
leitner 2004-03-07 21:48:56 +00:00
parent 076a8f4628
commit d8ce4dc2e5
3 changed files with 3 additions and 2 deletions

View File

@ -3,6 +3,7 @@
add io_passfd and io_receivefd (and test/fdpassing.c)
io_trywrite and io_waitwrite not ignore SIGPIPE
add man pages for libio, safemult
fix possible signal race in io_tryread and io_trywrite (Scott Lamb)
0.18:
make libowfat compile on BSD again (sorry, and thanks to everyone who

View File

@ -21,7 +21,7 @@ int64 io_tryread(int64 d,char* buf,int64 len) {
e->next_read=-1;
return -1;
}
new.it_interval.tv_usec=0;
new.it_interval.tv_usec=10000;
new.it_interval.tv_sec=0;
new.it_value.tv_usec=10000;
new.it_value.tv_sec=0;

View File

@ -22,7 +22,7 @@ int64 io_trywrite(int64 d,const char* buf,int64 len) {
e->next_write=-1;
return -1;
}
new.it_interval.tv_usec=0;
new.it_interval.tv_usec=10000;
new.it_interval.tv_sec=0;
new.it_value.tv_usec=10000;
new.it_value.tv_sec=0;