diff options
author | Nick Mathewson <nickm@torproject.org> | 2020-02-14 09:57:46 -0500 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2020-03-26 11:20:20 -0400 |
commit | 3f6e37b1bcb9e5ec70f228a9cb6b01db0b9ad8d5 (patch) | |
tree | db624fd523e0de2a69a8e5651bedb80b4c5a88d1 /src/lib/time | |
parent | 53d74c0954b989d478c868b12647e1088a079457 (diff) | |
download | tor-3f6e37b1bcb9e5ec70f228a9cb6b01db0b9ad8d5.tar.gz tor-3f6e37b1bcb9e5ec70f228a9cb6b01db0b9ad8d5.zip |
Add a SUBSYS_DECLARE_LOCATION() to every subsystem.
Diffstat (limited to 'src/lib/time')
-rw-r--r-- | src/lib/time/time_sys.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/lib/time/time_sys.c b/src/lib/time/time_sys.c index 044d328f81..1c1bc4cd18 100644 --- a/src/lib/time/time_sys.c +++ b/src/lib/time/time_sys.c @@ -20,6 +20,7 @@ subsys_time_initialize(void) const subsys_fns_t sys_time = { .name = "time", + SUBSYS_DECLARE_LOCATION(), /* Monotonic time depends on logging, and a lot of other modules depend on * monotonic time. */ .level = -80, |