diff options
author | Laurent Bercot <ska-skaware@skarnet.org> | 2016-07-20 12:24:12 +0000 |
---|---|---|
committer | Laurent Bercot <ska-skaware@skarnet.org> | 2016-07-20 12:24:12 +0000 |
commit | d68c3647e69cce6aaf4fd3d94e3eb33e3125b31c (patch) | |
tree | 18badf732631438ed7a6325d9634180270da6332 /src/include | |
parent | e1dd693e2ac3c0fb1d42ea0e664021b4672465e6 (diff) | |
download | skalibs-d68c3647e69cce6aaf4fd3d94e3eb33e3125b31c.tar.xz |
Add ipc_timed_send
Diffstat (limited to 'src/include')
-rw-r--r-- | src/include/skalibs/unix-timed.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/include/skalibs/unix-timed.h b/src/include/skalibs/unix-timed.h index 5fad179..c3ae4cd 100644 --- a/src/include/skalibs/unix-timed.h +++ b/src/include/skalibs/unix-timed.h @@ -33,4 +33,7 @@ extern int timed_getlnmax (buffer *, char *, unsigned int, unsigned int *, char, extern int netstring_timed_get (buffer *, stralloc *, tain_t const *, tain_t *) ; #define netstring_timed_get_g(b, sa, deadline) netstring_timed_get(b, sa, (deadline), &STAMP) +extern int ipc_timed_send (int, char const *, unsigned int, tain_t const *, tain_t *) ; +#define ipc_timed_send_g(fd, s, len, deadline) ipc_timed_send(fd, s, len, (deadline), &STAMP) + #endif |