Annotate subsystem list with their levels.

This commit is contained in:
Nick Mathewson 2018-11-09 22:17:18 -05:00
parent bf4f55a13d
commit 91355c0fac

View File

@ -26,15 +26,15 @@
**/ **/
const subsys_fns_t *tor_subsystems[] = { const subsys_fns_t *tor_subsystems[] = {
&sys_winprocess, /* -100 */ &sys_winprocess, /* -100 */
&sys_torerr, &sys_torerr, /* -100 */
&sys_wallclock, &sys_wallclock, /* -99 */
&sys_threads, &sys_threads, /* -95 */
&sys_logging, &sys_logging, /* -90 */
&sys_time, &sys_time, /* -90 */
&sys_network, &sys_network, /* -90 */
&sys_compress, &sys_compress, /* -70 */
&sys_crypto, &sys_crypto, /* -60 */
&sys_tortls, &sys_tortls, /* -50 */
}; };
const unsigned n_tor_subsystems = ARRAY_LENGTH(tor_subsystems); const unsigned n_tor_subsystems = ARRAY_LENGTH(tor_subsystems);