]> git.ipfire.org Git - thirdparty/tor.git/commitdiff
Annotate subsystem list with their levels.
authorNick Mathewson <nickm@torproject.org>
Sat, 10 Nov 2018 03:17:18 +0000 (22:17 -0500)
committerNick Mathewson <nickm@torproject.org>
Sat, 10 Nov 2018 03:17:18 +0000 (22:17 -0500)
src/app/main/subsystem_list.c

index 190e6579d89bbc870cf6ea008417888890ddc1ba..8640329e92dd874cf8e1c57b81fd2a803ce7974e 100644 (file)
  **/
 const subsys_fns_t *tor_subsystems[] = {
   &sys_winprocess, /* -100 */
-  &sys_torerr,
-  &sys_wallclock,
-  &sys_threads,
-  &sys_logging,
-  &sys_time,
-  &sys_network,
-  &sys_compress,
-  &sys_crypto,
-  &sys_tortls,
+  &sys_torerr, /* -100 */
+  &sys_wallclock, /* -99 */
+  &sys_threads, /* -95 */
+  &sys_logging, /* -90 */
+  &sys_time, /* -90 */
+  &sys_network, /* -90 */
+  &sys_compress, /* -70 */
+  &sys_crypto, /* -60 */
+  &sys_tortls, /* -50 */
 };
 
 const unsigned n_tor_subsystems = ARRAY_LENGTH(tor_subsystems);