mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-24 12:23:32 +01:00
Fix priority on process subsystem level: it uses "net"
This commit is contained in:
parent
ab4395d082
commit
fd58e5e498
@ -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);
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user