diff options
author | Sebastian Hahn <sebastian@torproject.org> | 2015-02-15 11:49:19 +0100 |
---|---|---|
committer | Sebastian Hahn <sebastian@torproject.org> | 2015-02-15 11:49:19 +0100 |
commit | 3bcdb26267502e0d1de5d01854c8a2cf29a5e5f4 (patch) | |
tree | 9c36d82aa3362c982229153b5bd54f6969967791 /src/or/cpuworker.c | |
parent | 424edd57105ea6eaf96d7db66e00ac1298f9dc52 (diff) | |
download | tor-3bcdb26267502e0d1de5d01854c8a2cf29a5e5f4.tar.gz tor-3bcdb26267502e0d1de5d01854c8a2cf29a5e5f4.zip |
Call cpu_init if we change to being a relay
The issue is that we use the cpuworker system with relays only, so if we
start up as a client and transition to being a relay later, we'll be
sad.
This fixes bug 14901; not in any released version of Tor.
Diffstat (limited to 'src/or/cpuworker.c')
-rw-r--r-- | src/or/cpuworker.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/or/cpuworker.c b/src/or/cpuworker.c index c5e78ed716..5787c75530 100644 --- a/src/or/cpuworker.c +++ b/src/or/cpuworker.c @@ -71,7 +71,8 @@ replyqueue_process_cb(evutil_socket_t sock, short events, void *arg) replyqueue_process(rq); } -/** Initialize the cpuworker subsystem. +/** Initialize the cpuworker subsystem. It is OK to call this more than once + * during Tor's lifetime. */ void cpu_init(void) |