summaryrefslogtreecommitdiff
path: root/src/common/workqueue.c
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2018-06-29 11:35:49 -0400
committerNick Mathewson <nickm@torproject.org>2018-06-29 12:21:52 -0400
commit4212a135e1c092a16fc1c4d783495e44d48bbaf9 (patch)
tree5be975b2bf77325a9386fd930e66d35183472190 /src/common/workqueue.c
parent35e1c497aa54a22818552c9f3757067e381bb6bb (diff)
downloadtor-4212a135e1c092a16fc1c4d783495e44d48bbaf9.tar.gz
tor-4212a135e1c092a16fc1c4d783495e44d48bbaf9.zip
Remove util.h and compat.h includes from src/common
Diffstat (limited to 'src/common/workqueue.c')
-rw-r--r--src/common/workqueue.c16
1 files changed, 9 insertions, 7 deletions
diff --git a/src/common/workqueue.c b/src/common/workqueue.c
index 7b030052cf..e5254396f9 100644
--- a/src/common/workqueue.c
+++ b/src/common/workqueue.c
@@ -24,17 +24,19 @@
*/
#include "orconfig.h"
-#include "common/compat.h"
#include "common/compat_libevent.h"
-#include "lib/thread/threads.h"
-#include "lib/crypt_ops/crypto_rand.h"
-#include "common/util.h"
#include "common/workqueue.h"
-#include "tor_queue.h"
-#include "lib/net/alertsock.h"
-#include "lib/log/torlog.h"
+
+#include "lib/crypt_ops/crypto_rand.h"
#include "lib/intmath/weakrng.h"
+#include "lib/log/ratelim.h"
+#include "lib/log/torlog.h"
+#include "lib/log/util_bug.h"
+#include "lib/net/alertsock.h"
+#include "lib/net/socket.h"
+#include "lib/thread/threads.h"
+#include "tor_queue.h"
#include <event2/event.h>
#include <string.h>