From: Victor Julien Date: Wed, 10 Nov 2021 14:40:26 +0000 (+0100) Subject: time: add timeradd implementation X-Git-Tag: suricata-7.0.0-beta1~450 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=39141a8836c99cf65e533e8c6dd312bfb579643b;p=thirdparty%2Fsuricata.git time: add timeradd implementation timeradd isn't available on MinGW. --- diff --git a/src/util-time.h b/src/util-time.h index 79e51e3697..890ae38c37 100644 --- a/src/util-time.h +++ b/src/util-time.h @@ -56,6 +56,18 @@ static inline bool TimevalEarlier(struct timeval *first, struct timeval *second) return !timercmp(first, second, >); } +#ifndef timeradd +#define timeradd(a, b, r) \ + do { \ + (r)->tv_sec = (a)->tv_sec + (b)->tv_sec; \ + (r)->tv_usec = (a)->tv_usec + (b)->tv_usec; \ + if ((r)->tv_usec >= 1000000) { \ + (r)->tv_sec++; \ + (r)->tv_usec -= 1000000; \ + } \ + } while (0) +#endif + #ifdef UNITTESTS void TimeSet(struct timeval *); void TimeSetToCurrentTime(void);