2001-02-04 01:28:45 +00:00
|
|
|
#include <errno.h>
|
|
|
|
#include "buffer.h"
|
|
|
|
|
2009-02-28 00:07:55 +00:00
|
|
|
int buffer_stubborn(ssize_t (*op)(),int fd,const char* buf, size_t len,void* cookie) {
|
2001-02-04 01:28:45 +00:00
|
|
|
int w;
|
|
|
|
while (len) {
|
2009-02-28 00:07:55 +00:00
|
|
|
if ((w=op(fd,buf,len,cookie))<0) {
|
2001-02-04 01:28:45 +00:00
|
|
|
if (errno == EINTR) continue;
|
|
|
|
return -1;
|
|
|
|
};
|
|
|
|
buf+=w;
|
|
|
|
len-=w;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|