diff options
author | Nick Mathewson <nickm@torproject.org> | 2018-11-09 22:17:18 -0500 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2018-11-09 22:17:18 -0500 |
commit | 91355c0fac0f90ba286edb3d3f12d71d250be16d (patch) | |
tree | cbe0d6774cb944ff392d97720635bcd74564dd71 /src/app | |
parent | bf4f55a13da783083b0c76decd6ebf475a63ebd0 (diff) | |
download | tor-91355c0fac0f90ba286edb3d3f12d71d250be16d.tar.gz tor-91355c0fac0f90ba286edb3d3f12d71d250be16d.zip |
Annotate subsystem list with their levels.
Diffstat (limited to 'src/app')
-rw-r--r-- | src/app/main/subsystem_list.c | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/src/app/main/subsystem_list.c b/src/app/main/subsystem_list.c index 190e6579d8..8640329e92 100644 --- a/src/app/main/subsystem_list.c +++ b/src/app/main/subsystem_list.c @@ -26,15 +26,15 @@ **/ const subsys_fns_t *tor_subsystems[] = { &sys_winprocess, /* -100 */ - &sys_torerr, - &sys_wallclock, - &sys_threads, - &sys_logging, - &sys_time, - &sys_network, - &sys_compress, - &sys_crypto, - &sys_tortls, + &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 */ }; const unsigned n_tor_subsystems = ARRAY_LENGTH(tor_subsystems); |