diff options
author | Nick Mathewson <nickm@torproject.org> | 2018-11-06 20:38:09 -0500 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2018-11-14 16:07:36 -0500 |
commit | 4ecd5da3065d83af0743669dfcadd3cb01356cee (patch) | |
tree | ec7d870f0d14dfc0295d5c3f2b16d72d4e62bc16 /src/ext/timeouts/timeout.h | |
parent | d32795bb6ebdfbf05180d7552d4cd18cb33ddcee (diff) | |
download | tor-4ecd5da3065d83af0743669dfcadd3cb01356cee.tar.gz tor-4ecd5da3065d83af0743669dfcadd3cb01356cee.zip |
Add .may_include to ext/timeouts.
Diffstat (limited to 'src/ext/timeouts/timeout.h')
-rw-r--r-- | src/ext/timeouts/timeout.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ext/timeouts/timeout.h b/src/ext/timeouts/timeout.h index b35874e153..1ed309fd08 100644 --- a/src/ext/timeouts/timeout.h +++ b/src/ext/timeouts/timeout.h @@ -31,7 +31,7 @@ #include <inttypes.h> /* PRIu64 PRIx64 PRIX64 uint64_t */ -#include "tor_queue.h" /* TAILQ(3) */ +#include "ext/tor_queue.h" /* TAILQ(3) */ /* @@ -147,7 +147,7 @@ TIMEOUT_PUBLIC struct timeout *timeout_init(struct timeout *, int); #ifndef TIMEOUT_DISABLE_RELATIVE_ACCESS TIMEOUT_PUBLIC bool timeout_pending(struct timeout *); /* true if on timing wheel, false otherwise */ - + TIMEOUT_PUBLIC bool timeout_expired(struct timeout *); /* true if on expired queue, false otherwise */ |