summaryrefslogtreecommitdiff
path: root/src/libunixonacid/buffer_timed_flush.c
blob: 4de467a90bac7ca5c8c0509f3b9b2eb6101fd2d5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/* ISC license. */

#include <skalibs/buffer.h>
#include <skalibs/functypes.h>
#include <skalibs/unix-timed.h>

static int buffer_isnonempty (buffer *b)
{
  return !buffer_isempty(b) ;
}

int buffer_timed_flush (buffer *b, tain_t const *deadline, tain_t *stamp)
{
  return timed_flush(b, (initfunc_t_ref)&buffer_getfd, (initfunc_t_ref)&buffer_isnonempty, (initfunc_t_ref)&buffer_flush, deadline, stamp) ;
}