diff options
author | teor <teor@torproject.org> | 2019-09-10 08:43:13 +1000 |
---|---|---|
committer | teor <teor@torproject.org> | 2019-09-10 08:43:13 +1000 |
commit | 7e22d9934658c27ba0d45455959f46207a190649 (patch) | |
tree | 09c77a57b6413205faba03854b2fec03ec612671 /src/app | |
parent | 4596ead2fc88e4b1482b0f3bc8ff356daea2337b (diff) | |
parent | 2e2a35b6943810257b6917648db90ed5d46505e1 (diff) | |
download | tor-7e22d9934658c27ba0d45455959f46207a190649.tar.gz tor-7e22d9934658c27ba0d45455959f46207a190649.zip |
Merge branch 'bug31615_040' into bug31615_041
Merged modified lines from bug31615_040, and unmodified lines
from maint-0.4.1.
Diffstat (limited to 'src/app')
-rw-r--r-- | src/app/main/subsystem_list.c | 32 |
1 files changed, 17 insertions, 15 deletions
diff --git a/src/app/main/subsystem_list.c b/src/app/main/subsystem_list.c index f595796232..c637887153 100644 --- a/src/app/main/subsystem_list.c +++ b/src/app/main/subsystem_list.c @@ -32,23 +32,25 @@ /** * Global list of the subsystems in Tor, in the order of their initialization. + * Want to know the exact level numbers? + * We'll implement a level dump command in #31614. **/ const subsys_fns_t *tor_subsystems[] = { - &sys_winprocess, /* -100 */ - &sys_torerr, /* -100 */ - &sys_wallclock, /* -99 */ - &sys_threads, /* -95 */ - &sys_logging, /* -90 */ - &sys_time, /* -90 */ - &sys_network, /* -90 */ - &sys_compress, /* -70 */ - &sys_crypto, /* -60 */ - &sys_tortls, /* -50 */ - &sys_process, /* -35 */ - - &sys_orconn_event, /* -33 */ - &sys_ocirc_event, /* -32 */ - &sys_btrack, /* -30 */ + &sys_winprocess, + &sys_torerr, + &sys_wallclock, + &sys_threads, + &sys_logging, + &sys_time, + &sys_network, + &sys_compress, + &sys_crypto, + &sys_tortls, + &sys_process, + + &sys_orconn_event, + &sys_ocirc_event, + &sys_btrack, &sys_mainloop, /* 5 */ &sys_or, /* 20 */ |