mirror of https://github.com/nealey/eris.git
16 lines
275 B
C
16 lines
275 B
C
|
#include <errno.h>
|
||
|
#include "buffer.h"
|
||
|
|
||
|
int buffer_stubborn(int (*op)(),int fd,const char* buf, unsigned int len) {
|
||
|
int w;
|
||
|
while (len) {
|
||
|
if ((w=op(fd,buf,len))<0) {
|
||
|
if (errno == EINTR) continue;
|
||
|
return -1;
|
||
|
};
|
||
|
buf+=w;
|
||
|
len-=w;
|
||
|
}
|
||
|
return 0;
|
||
|
}
|