summaryrefslogtreecommitdiff
path: root/main
diff options
context:
space:
mode:
authorCorey Farrell <git@cfware.com>2017-11-19 22:23:44 -0500
committerCorey Farrell <git@cfware.com>2017-11-20 18:21:39 -0600
commit50e0e000c6fb48eb5967babbea9bea7a1965479d (patch)
tree4195892e61262a9a912cd7a624a53b73fe4fd6ee /main
parenta881c52c7848d5ac36a0882a5e03e09c3b17cce2 (diff)
loader: Fix comments in struct ast_module.
Make the comments follow doxygen format, move comments to the line before each field they describe. Change-Id: Ic445468398b5e88f13910f7c2f70bd15aad33a27
Diffstat (limited to 'main')
-rw-r--r--main/loader.c14
1 files changed, 10 insertions, 4 deletions
diff --git a/main/loader.c b/main/loader.c
index fc3e9a374..19e30f835 100644
--- a/main/loader.c
+++ b/main/loader.c
@@ -117,14 +117,20 @@ static int modules_loaded;
struct ast_module {
const struct ast_module_info *info;
- /* Used to get module references into refs log */
+ /*! Used to get module references into refs log */
void *ref_debug;
- void *lib; /* the shared lib, or NULL if embedded */
- int usecount; /* the number of 'users' currently in this module */
- struct module_user_list users; /* the list of users in the module */
+ /*! The shared lib. */
+ void *lib;
+ /*! Number of 'users' and other references currently holding the module. */
+ int usecount;
+ /*! List of users holding the module. */
+ struct module_user_list users;
struct {
+ /*! The module running and ready to accept requests. */
unsigned int running:1;
+ /*! The module has declined to start. */
unsigned int declined:1;
+ /*! This module is being held open until it's time to shutdown. */
unsigned int keepuntilshutdown:1;
} flags;
AST_LIST_ENTRY(ast_module) list_entry;