2001-02-04 01:28:45 +00:00
|
|
|
#include <errno.h>
|
|
|
|
#include "buffer.h"
|
|
|
|
|
2004-11-25 21:29:35 +00:00
|
|
|
int buffer_stubborn_read(int (*op)(),int fd,const unsigned char* buf, unsigned long int len) {
|
2001-02-04 01:28:45 +00:00
|
|
|
int w;
|
|
|
|
for (;;) {
|
|
|
|
if ((w=op(fd,buf,len))<0)
|
|
|
|
if (errno == EINTR) continue;
|
2001-05-12 03:16:10 +00:00
|
|
|
break;
|
2001-02-04 01:28:45 +00:00
|
|
|
}
|
|
|
|
return w;
|
|
|
|
}
|
|
|
|
|