rephist: Introduce a fraction and period for overload onionskin
[tor.git] / src / lib / time / time_sys.c
blob9bdf64403fbef8916af660b6f9ea3184ae5c368e
1 /* Copyright (c) 2018-2021, The Tor Project, Inc. */
2 /* See LICENSE for licensing information */
4 /**
5 * \file time_sys.c
6 * \brief Subsystem object for monotime setup.
7 **/
9 #include "orconfig.h"
10 #include "lib/subsys/subsys.h"
11 #include "lib/time/time_sys.h"
12 #include "lib/time/compat_time.h"
14 static int
15 subsys_time_initialize(void)
17 monotime_init();
18 return 0;
21 const subsys_fns_t sys_time = {
22 .name = "time",
23 SUBSYS_DECLARE_LOCATION(),
24 /* Monotonic time depends on logging, and a lot of other modules depend on
25 * monotonic time. */
26 .level = -80,
27 .supported = true,
28 .initialize = subsys_time_initialize,