diff options
author | June McEnroe <june@causal.agency> | 2019-11-14 17:10:28 -0500 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2019-11-14 17:10:28 -0500 |
commit | 474de83b4dab1668b83c133435e5896ee002b6af (patch) | |
tree | 5a02a34810d1dccaf6b56ea5b7770421a551e1b3 /bounce.h | |
parent | Remove server-time filter TODO (diff) | |
download | pounce-474de83b4dab1668b83c133435e5896ee002b6af.tar.gz pounce-474de83b4dab1668b83c133435e5896ee002b6af.zip |
Use struct timeval for sub-second precision
Diffstat (limited to 'bounce.h')
-rw-r--r-- | bounce.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/bounce.h b/bounce.h index 7bf830b..5afce01 100644 --- a/bounce.h +++ b/bounce.h @@ -18,7 +18,7 @@ #include <stdio.h> #include <stdlib.h> #include <string.h> -#include <time.h> +#include <sys/time.h> #include <tls.h> #include "compat.h" @@ -116,8 +116,8 @@ void ringAlloc(size_t len); void ringProduce(const char *line); size_t ringConsumer(const char *name); size_t ringDiff(size_t consumer); -const char *ringPeek(time_t *time, size_t consumer); -const char *ringConsume(time_t *time, size_t consumer); +const char *ringPeek(struct timeval *time, size_t consumer); +const char *ringConsume(struct timeval *time, size_t consumer); void ringInfo(void); int ringSave(FILE *file); void ringLoad(FILE *file); |