summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoshua Colp <jcolp@digium.com>2017-11-21 06:54:25 -0600
committerGerrit Code Review <gerrit2@gerrit.digium.api>2017-11-21 06:54:25 -0600
commit146f6b92eba8701dec081d82615ccc95bfc350b5 (patch)
tree92c07b7de525598794ac792b7f16f986b7fccc97
parent86e894c074a70938bbea9a0f01d320d13f694de2 (diff)
parent10b4b5d200f8ad703206588220b59f4fbbc20387 (diff)
Merge "loader: Fix comments in struct ast_module."
-rw-r--r--main/loader.c14
1 files changed, 10 insertions, 4 deletions
diff --git a/main/loader.c b/main/loader.c
index add6a4209..223897514 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;