X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=elogind.git;a=blobdiff_plain;f=src%2Fmacro.h;h=44b481775d37c5b4c1cb8def72edd7394d241092;hp=10a106bc196be3f1900d96d7b59cc9771a47520e;hb=17dbb83deef352bbea93b4143cc6c38dbce707be;hpb=ad780f1991d81c8013cc345488b9a035bf30aae7 diff --git a/src/macro.h b/src/macro.h index 10a106bc1..44b481775 100644 --- a/src/macro.h +++ b/src/macro.h @@ -1,4 +1,4 @@ -/*-*- Mode: C; c-basic-offset: 8 -*-*/ +/*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/ #ifndef foomacrohfoo #define foomacrohfoo @@ -24,6 +24,8 @@ #include #include +#include +#include #define _printf_attr_(a,b) __attribute__ ((format (printf, a, b))) #define _sentinel_ __attribute__ ((sentinel)) @@ -134,6 +136,34 @@ static inline size_t ALIGN(size_t l) { _i->iov_len = strlen(_s); \ } while(false); +static inline size_t IOVEC_TOTAL_SIZE(const struct iovec *i, unsigned n) { + unsigned j; + size_t r = 0; + + for (j = 0; j < n; j++) + r += i[j].iov_len; + + return r; +} + +static inline size_t IOVEC_INCREMENT(struct iovec *i, unsigned n, size_t k) { + unsigned j; + + for (j = 0; j < n; j++) { + size_t sub; + + if (_unlikely_(k <= 0)) + break; + + sub = MIN(i[j].iov_len, k); + i[j].iov_len -= sub; + i[j].iov_base = (uint8_t*) i[j].iov_base + sub; + k -= sub; + } + + return k; +} + #include "log.h" #endif