From 3534b428629be185e096be99e3bd5fdfe32d5544 Mon Sep 17 00:00:00 2001 From: Laurent Bercot Date: Thu, 18 Sep 2014 18:55:44 +0000 Subject: initial commit with rc for skalibs-2.0.0.0 --- src/libunixonacid/timed_flush.c | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 src/libunixonacid/timed_flush.c (limited to 'src/libunixonacid/timed_flush.c') diff --git a/src/libunixonacid/timed_flush.c b/src/libunixonacid/timed_flush.c new file mode 100644 index 0000000..2d60256 --- /dev/null +++ b/src/libunixonacid/timed_flush.c @@ -0,0 +1,26 @@ +/* ISC license. */ + +#include +#include +#include +#include +#include +#include +#include + +int timed_flush (void *b, initfunc_t_ref getfd, initfunc_t_ref isnonempty, initfunc_t_ref flush, tain_t const *deadline, tain_t *stamp) +{ + iopause_fd x = { .fd = (*getfd)(b), .events = IOPAUSE_WRITE, .revents = 0 } ; + while ((*isnonempty)(b)) + { + register int r = iopause_stamp(&x, 1, deadline, stamp) ; + if (r < 0) return 0 ; + else if (!r) return (errno = ETIMEDOUT, 0) ; + else if (x.revents & IOPAUSE_WRITE) + { + if (!((*flush)(b)) && !error_isagain(errno)) return 0 ; + } + else if (x.revents & IOPAUSE_EXCEPT) return (*flush)(b) ; + } + return 1 ; +} -- cgit v1.2.3