diff options
author | Nick Mathewson <nickm@torproject.org> | 2019-11-10 16:14:38 -0500 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2019-11-10 16:14:38 -0500 |
commit | 2d508f8fa56e180428337750788a155579ba84c8 (patch) | |
tree | e62aa4fdd35a21004ed3181340b0e347ce92a5e8 /src/lib/subsys | |
parent | a6d22d7fc2c5f5c868fda4ed1224216a16c25f84 (diff) | |
download | tor-2d508f8fa56e180428337750788a155579ba84c8.tar.gz tor-2d508f8fa56e180428337750788a155579ba84c8.zip |
Not const.
Diffstat (limited to 'src/lib/subsys')
-rw-r--r-- | src/lib/subsys/initialization.dox | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/lib/subsys/initialization.dox b/src/lib/subsys/initialization.dox index 3b500f9620..ed2d5abf27 100644 --- a/src/lib/subsys/initialization.dox +++ b/src/lib/subsys/initialization.dox @@ -55,7 +55,7 @@ In simplest terms, a **subsytem** is a logically separate part of Tor that can be initialized, shut down, managed, and configured somewhat independently of the rest of the program. -To define a subsystem, we declare a `static const` instance of subsys_fns_t, +To define a subsystem, we declare a `const` instance of subsys_fns_t, describing the subsystem and a set of functions that initialize it, deconstruct it, and so on. See the documentation for subsys_fns_t for a full list of these functions. @@ -73,4 +73,5 @@ must occur _after_ the initialization process, during configuration. + **/ |