diff options
author | Nick Mathewson <nickm@torproject.org> | 2018-12-21 14:12:20 -0500 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2018-12-21 14:12:20 -0500 |
commit | fd58e5e498f1c86732de8d9edf6777e7822abfe7 (patch) | |
tree | fb2adf9422e7d703eedc0584a8466acab1bc25a1 /src/app | |
parent | ab4395d08206d82f69512340cf5372d5121561ad (diff) | |
download | tor-fd58e5e498f1c86732de8d9edf6777e7822abfe7.tar.gz tor-fd58e5e498f1c86732de8d9edf6777e7822abfe7.zip |
Fix priority on process subsystem level: it uses "net"
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 122f7af215..bd6be42145 100644 --- a/src/app/main/subsystem_list.c +++ b/src/app/main/subsystem_list.c @@ -33,10 +33,10 @@ const subsys_fns_t *tor_subsystems[] = { &sys_logging, /* -90 */ &sys_time, /* -90 */ &sys_network, /* -90 */ - &sys_process, /* -80 */ &sys_compress, /* -70 */ &sys_crypto, /* -60 */ &sys_tortls, /* -50 */ + &sys_process, /* -35 */ }; const unsigned n_tor_subsystems = ARRAY_LENGTH(tor_subsystems); |