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/thread | |
parent | 53d74c0954b989d478c868b12647e1088a079457 (diff) | |
download | tor-3f6e37b1bcb9e5ec70f228a9cb6b01db0b9ad8d5.tar.gz tor-3f6e37b1bcb9e5ec70f228a9cb6b01db0b9ad8d5.zip |
Add a SUBSYS_DECLARE_LOCATION() to every subsystem.
Diffstat (limited to 'src/lib/thread')
-rw-r--r-- | src/lib/thread/compat_threads.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/lib/thread/compat_threads.c b/src/lib/thread/compat_threads.c index 21125bddad..75ade9c9f2 100644 --- a/src/lib/thread/compat_threads.c +++ b/src/lib/thread/compat_threads.c @@ -129,6 +129,7 @@ subsys_threads_initialize(void) const subsys_fns_t sys_threads = { .name = "threads", + SUBSYS_DECLARE_LOCATION(), .supported = true, .level = -89, .initialize = subsys_threads_initialize, |