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

Re-order thread initialization to follow logging, and remove a comment.

lib/log no longer uses lib/thread; lib/log only uses lib/lock, which
is at a lower level.
parent 67d59d7d
No related branches found
No related tags found
No related merge requests found
......@@ -46,8 +46,8 @@ const subsys_fns_t *tor_subsystems[] = {
&sys_torerr,
&sys_wallclock,
&sys_threads,
&sys_logging,
&sys_threads,
&sys_time,
......
......@@ -130,8 +130,6 @@ subsys_threads_initialize(void)
const subsys_fns_t sys_threads = {
.name = "threads",
.supported = true,
/* Threads is used by logging, which is a diagnostic feature, we want it to
* init right after low-level error handling and approx time. */
.level = -95,
.level = -89,
.initialize = subsys_threads_initialize,
};
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment