diff options
author | Nick Mathewson <nickm@torproject.org> | 2020-02-13 12:55:05 -0500 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2020-02-13 12:55:05 -0500 |
commit | 691d271b2e2e4d3f7c80a86f6de59f016171b8ea (patch) | |
tree | d90382b109e37650a1182069af0a70fdb94c8ab1 /src/app | |
parent | 67d59d7d1ffa058280471154b8185b5420334458 (diff) | |
download | tor-691d271b2e2e4d3f7c80a86f6de59f016171b8ea.tar.gz tor-691d271b2e2e4d3f7c80a86f6de59f016171b8ea.zip |
Re-order thread initialization to follow logging, and remove a comment.
lib/log no longer uses lib/thread; lib/log only uses lib/lock, which
is at a lower level.
Diffstat (limited to 'src/app')
-rw-r--r-- | src/app/main/subsystem_list.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/app/main/subsystem_list.c b/src/app/main/subsystem_list.c index 6784ebe8a0..bb15b17365 100644 --- a/src/app/main/subsystem_list.c +++ b/src/app/main/subsystem_list.c @@ -46,8 +46,8 @@ const subsys_fns_t *tor_subsystems[] = { &sys_torerr, &sys_wallclock, - &sys_threads, &sys_logging, + &sys_threads, &sys_time, |