summaryrefslogtreecommitdiff
path: root/main/loader.c
diff options
context:
space:
mode:
authorRussell Bryant <russell@russellbryant.com>2007-06-05 15:54:36 +0000
committerRussell Bryant <russell@russellbryant.com>2007-06-05 15:54:36 +0000
commit508d36f5ad922aa4ae6a3c1ed586dd04af24a993 (patch)
tree299f09a143a0dc32fe4717f35700fca9c04113df /main/loader.c
parent72cd0474f6a1b9ba5b0dbb8ec11efeb1d9d595a4 (diff)
Merged revisions 67308 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.4 ........ r67308 | russell | 2007-06-05 10:51:53 -0500 (Tue, 05 Jun 2007) | 5 lines When shutting down "gracefully", go through and run the unload() callbacks for all of the modules. "stop now" is considered a non-graceful shutdown and will not go through this process. (issue #9804, reported by chrisost, patch by me) ........ git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@67310 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'main/loader.c')
-rw-r--r--main/loader.c25
1 files changed, 25 insertions, 0 deletions
diff --git a/main/loader.c b/main/loader.c
index 53b557f11..c1b7597c9 100644
--- a/main/loader.c
+++ b/main/loader.c
@@ -428,6 +428,31 @@ static struct ast_module *load_dynamic_module(const char *resource_in, unsigned
}
#endif
+void ast_module_shutdown(void)
+{
+ struct ast_module *mod;
+ AST_LIST_HEAD_NOLOCK_STATIC(local_module_list, ast_module);
+
+ /* We have to call the unload() callbacks in reverse order that the modules
+ * exist in the module list so it is the reverse order of how they were
+ * loaded. */
+
+ AST_LIST_LOCK(&module_list);
+ while ((mod = AST_LIST_REMOVE_HEAD(&module_list, entry)))
+ AST_LIST_INSERT_HEAD(&local_module_list, mod, entry);
+ AST_LIST_UNLOCK(&module_list);
+
+ while ((mod = AST_LIST_REMOVE_HEAD(&local_module_list, entry))) {
+ if (mod->info->unload)
+ mod->info->unload();
+ /* Since this should only be called when shutting down "gracefully",
+ * all channels should be down before we get to this point, meaning
+ * there will be no module users left. */
+ AST_LIST_HEAD_DESTROY(&mod->users);
+ free(mod);
+ }
+}
+
int ast_unload_resource(const char *resource_name, enum ast_module_unload_mode force)
{
struct ast_module *mod;