commit fd58e5e498f1c86732de8d9edf6777e7822abfe7
parent ab4395d08206d82f69512340cf5372d5121561ad
Author: Nick Mathewson <nickm@torproject.org>
Date: Fri, 21 Dec 2018 14:12:20 -0500
Fix priority on process subsystem level: it uses "net"
Diffstat:
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git 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);
diff --git a/src/lib/process/process_sys.c b/src/lib/process/process_sys.c
@@ -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