mirror of https://github.com/pygos/pkg-utils.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
411 B
27 lines
411 B
/* SPDX-License-Identifier: ISC */ |
|
#include <unistd.h> |
|
#include <errno.h> |
|
|
|
#include "util/util.h" |
|
|
|
ssize_t write_retry(int fd, void *data, size_t size) |
|
{ |
|
ssize_t ret, total = 0; |
|
|
|
while (size > 0) { |
|
ret = write(fd, data, size); |
|
if (ret == 0) |
|
break; |
|
if (ret < 0) { |
|
if (errno == EINTR) |
|
continue; |
|
return -1; |
|
} |
|
|
|
data = (char *)data + ret; |
|
size -= ret; |
|
total += ret; |
|
} |
|
|
|
return total; |
|
}
|
|
|