libowfat/buffer/buffer_stubborn2.c

14 lines
265 B
C
Raw Normal View History

2001-02-04 01:28:45 +00:00
#include <errno.h>
#include "buffer.h"
2014-03-14 19:42:54 +00:00
ssize_t buffer_stubborn_read(ssize_t (*op)(),int fd,const char* buf, size_t len,void* cookie) {
ssize_t w;
2001-02-04 01:28:45 +00:00
for (;;) {
if ((w=op(fd,buf,len,cookie))<0)
2001-02-04 01:28:45 +00:00
if (errno == EINTR) continue;
2001-05-12 03:16:10 +00:00
break;
2001-02-04 01:28:45 +00:00
}
return w;
}