diff options
author | Nick Mathewson <nickm@torproject.org> | 2018-06-28 09:14:42 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2018-06-28 09:14:42 -0400 |
commit | 9cf335c9a5fe6767e90cc5cfdc1f5c95465edb10 (patch) | |
tree | 04e771dcb1c0c577b221a5a4f4b11ffa677972af /src/test/test_workqueue.c | |
parent | 544ab27a949406628809869111b7288017a5bcb1 (diff) | |
download | tor-9cf335c9a5fe6767e90cc5cfdc1f5c95465edb10.tar.gz tor-9cf335c9a5fe6767e90cc5cfdc1f5c95465edb10.zip |
Extract threading code into a new library.
Note that the workqueue code does *not* go here: it is logically at
a higher level, since it needs to use libevent and the networking
stack.
Diffstat (limited to 'src/test/test_workqueue.c')
-rw-r--r-- | src/test/test_workqueue.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/test_workqueue.c b/src/test/test_workqueue.c index 7c525aa28c..5cda99b58e 100644 --- a/src/test/test_workqueue.c +++ b/src/test/test_workqueue.c @@ -4,7 +4,7 @@ /* See LICENSE for licensing information */ #include "or/or.h" -#include "common/compat_threads.h" +#include "lib/thread/threads.h" #include "or/onion.h" #include "common/workqueue.h" #include "lib/crypt_ops/crypto_curve25519.h" |