mirror of
https://github.com/servalproject/serval-dna.git
synced 2024-12-22 06:27:51 +00:00
bf9710fd5a
This only affects build_android, if nacl-gcc-prep is run then build/`uname -s` will be created.
28 lines
501 B
C
28 lines
501 B
C
#include <poll.h>
|
|
#include <unistd.h>
|
|
#include "e.h"
|
|
#include "writeall.h"
|
|
|
|
int writeall(int fd,const void *x,long long xlen)
|
|
{
|
|
long long w;
|
|
while (xlen > 0) {
|
|
w = xlen;
|
|
if (w > 1048576) w = 1048576;
|
|
w = write(fd,x,w);
|
|
if (w < 0) {
|
|
if (errno == EINTR || errno == EAGAIN || errno == EWOULDBLOCK) {
|
|
struct pollfd p;
|
|
p.fd = fd;
|
|
p.events = POLLOUT | POLLERR;
|
|
poll(&p,1,-1);
|
|
continue;
|
|
}
|
|
return -1;
|
|
}
|
|
x += w;
|
|
xlen -= w;
|
|
}
|
|
return 0;
|
|
}
|