2001-02-04 01:28:45 +00:00
|
|
|
#include <errno.h>
|
|
|
|
#include "buffer.h"
|
|
|
|
|
2005-04-23 15:50:16 +00:00
|
|
|
int buffer_stubborn(int (*op)(),int fd,const char* buf, unsigned long int len) {
|
2001-02-04 01:28:45 +00:00
|
|
|
int w;
|
|
|
|
while (len) {
|
|
|
|
if ((w=op(fd,buf,len))<0) {
|
|
|
|
if (errno == EINTR) continue;
|
|
|
|
return -1;
|
|
|
|
};
|
|
|
|
buf+=w;
|
|
|
|
len-=w;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|