commit a0ee54549fec3ae710ab5e3623d707bd08adcafe
parent d3e4afcc9b835e0f862207ef16d7e706ceea9ce1
Author: Nick Mathewson <nickm@torproject.org>
Date: Thu, 1 Nov 2018 13:34:07 -0400
Turn the wallclock module into a subsystem.
(This may be slightly gratuitous.)
Diffstat:
6 files changed, 36 insertions(+), 3 deletions(-)
diff --git a/src/app/main/main.c b/src/app/main/main.c
@@ -1394,7 +1394,6 @@ tor_run_main(const tor_main_configuration_t *tor_cfg)
init_protocol_warning_severity_level();
- update_approx_time(time(NULL));
tor_compress_init();
monotime_init();
diff --git a/src/app/main/subsystem_list.c b/src/app/main/subsystem_list.c
@@ -9,9 +9,10 @@
#include "lib/cc/torint.h"
#include "lib/err/torerr_sys.h"
+#include "lib/log/log_sys.h"
#include "lib/process/winprocess_sys.h"
#include "lib/thread/thread_sys.h"
-#include "lib/log/log_sys.h"
+#include "lib/wallclock/wallclock_sys.h"
#include <stddef.h>
@@ -21,6 +22,7 @@
const subsys_fns_t *tor_subsystems[] = {
&sys_winprocess,
&sys_torerr,
+ &sys_wallclock,
&sys_threads,
&sys_logging,
};
diff --git a/src/lib/wallclock/.may_include b/src/lib/wallclock/.may_include
@@ -3,4 +3,5 @@ lib/cc/*.h
lib/err/*.h
lib/wallclock/*.h
lib/string/*.h
+lib/subsys/*.h
lib/testsupport/*.h
diff --git a/src/lib/wallclock/approx_time.c b/src/lib/wallclock/approx_time.c
@@ -9,7 +9,9 @@
**/
#include "orconfig.h"
+#include "lib/subsys/subsys.h"
#include "lib/wallclock/approx_time.h"
+#include "lib/wallclock/wallclock_sys.h"
/* =====
* Cached time
@@ -41,3 +43,17 @@ update_approx_time(time_t now)
cached_approx_time = now;
}
#endif /* !defined(TIME_IS_FAST) */
+
+static int
+init_wallclock_subsys(void)
+{
+ update_approx_time(time(NULL));
+ return 0;
+}
+
+const subsys_fns_t sys_wallclock = {
+ .name = "wallclock",
+ .supported = true,
+ .level = -99,
+ .initialize = init_wallclock_subsys,
+};
diff --git a/src/lib/wallclock/include.am b/src/lib/wallclock/include.am
@@ -19,4 +19,5 @@ noinst_HEADERS += \
src/lib/wallclock/approx_time.h \
src/lib/wallclock/timeval.h \
src/lib/wallclock/time_to_tm.h \
- src/lib/wallclock/tor_gettimeofday.h
+ src/lib/wallclock/tor_gettimeofday.h \
+ src/lib/wallclock/wallclock_sys.h
diff --git a/src/lib/wallclock/wallclock_sys.h b/src/lib/wallclock/wallclock_sys.h
@@ -0,0 +1,14 @@
+/* Copyright (c) 2018, The Tor Project, Inc. */
+/* See LICENSE for licensing information */
+
+/**
+ * \file wallclock_sys.h
+ * \brief Declare subsystem object for the wallclock module.
+ **/
+
+#ifndef TOR_WALLCLOCK_SYS_H
+#define TOR_WALLCLOCK_SYS_H
+
+extern const struct subsys_fns_t sys_wallclock;
+
+#endif /* !defined(TOR_WALLCLOCK_SYS_H) */