mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-10 21:23:58 +01:00
Merge remote-tracking branch 'tor-github/pr/866'
This commit is contained in:
commit
e4692fad96
@ -1,6 +1,5 @@
|
||||
orconfig.h
|
||||
|
||||
ext/tor_queue.h
|
||||
timeout-bitops.c
|
||||
timeout-debug.h
|
||||
timeout.h
|
||||
ext/timeouts/*.h
|
||||
ext/timeouts/timeout-bitops.c
|
||||
|
@ -4,7 +4,7 @@
|
||||
#include <assert.h>
|
||||
#include <limits.h>
|
||||
|
||||
#include "timeout.h"
|
||||
#include "ext/timeouts/timeout.h"
|
||||
|
||||
#define THE_END_OF_TIME ((timeout_t)-1)
|
||||
|
||||
|
@ -40,14 +40,14 @@
|
||||
|
||||
#include "ext/tor_queue.h" /* TAILQ(3) */
|
||||
|
||||
#include "timeout.h"
|
||||
#include "ext/timeouts/timeout.h"
|
||||
|
||||
#ifndef TIMEOUT_DEBUG
|
||||
#define TIMEOUT_DEBUG 0
|
||||
#endif
|
||||
|
||||
#if TIMEOUT_DEBUG - 0
|
||||
#include "timeout-debug.h"
|
||||
#include "ext/timeouts/timeout-debug.h"
|
||||
#endif
|
||||
|
||||
#ifdef TIMEOUT_DISABLE_RELATIVE_ACCESS
|
||||
@ -141,7 +141,7 @@
|
||||
#define WHEEL_MASK (WHEEL_LEN - 1)
|
||||
#define TIMEOUT_MAX ((TIMEOUT_C(1) << (WHEEL_BIT * WHEEL_NUM)) - 1)
|
||||
|
||||
#include "timeout-bitops.c"
|
||||
#include "ext/timeouts/timeout-bitops.c"
|
||||
|
||||
#if WHEEL_BIT == 6
|
||||
#define ctz(n) ctz64(n)
|
||||
|
Loading…
Reference in New Issue
Block a user