0
0
mirror of https://gitlab.torproject.org/tpo/core/tor.git synced 2024-09-20 12:22:14 +02:00

Fix priority on process subsystem level: it uses "net"

This commit is contained in:
Nick Mathewson 2018-12-21 14:12:20 -05:00
parent ab4395d082
commit fd58e5e498
2 changed files with 2 additions and 2 deletions

View File

@ -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);

View File

@ -26,7 +26,7 @@ subsys_process_shutdown(void)
const subsys_fns_t sys_process = {
.name = "process",
.level = -80,
.level = -35,
.supported = true,
.initialize = subsys_process_initialize,
.shutdown = subsys_process_shutdown