Skip to content
Snippets Groups Projects
Commit e067cb42 authored by Nick Mathewson's avatar Nick Mathewson :game_die:
Browse files

Move process subsystem after evloop.

Process uses evloop, and so should be initialized after it.
parent 63b7dabd
Branches
Tags
No related merge requests found
......@@ -53,9 +53,9 @@ const subsys_fns_t *tor_subsystems[] = {
&sys_compress,
&sys_network,
&sys_tortls,
&sys_process,
&sys_evloop,
&sys_process,
&sys_mainloop,
&sys_or,
......
......@@ -26,7 +26,7 @@ subsys_process_shutdown(void)
const subsys_fns_t sys_process = {
.name = "process",
.level = -35,
.level = -18,
.supported = true,
.initialize = subsys_process_initialize,
.shutdown = subsys_process_shutdown
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment