1
0
Fork 0
mirror of https://github.com/pygos/pkg-utils.git synced 2024-05-06 22:46:15 +02:00
pkg-utils/lib/util/read_retry.c
David Oberhollenzer 20aea96396 Add license
Signed-off-by: David Oberhollenzer <goliath@infraroot.at>
2019-03-08 18:18:31 +01:00

28 lines
417 B
C

/* SPDX-License-Identifier: ISC */
#include <unistd.h>
#include <errno.h>
#include "util/util.h"
ssize_t read_retry(int fd, void *buffer, size_t size)
{
ssize_t ret, total = 0;
while (size > 0) {
ret = read(fd, buffer, size);
if (ret < 0) {
if (errno == EINTR)
continue;
return -1;
}
if (ret == 0)
break;
total += ret;
size -= ret;
buffer = (char *)buffer + ret;
}
return total;
}