[asterisk-commits] russell: branch 1.4 r67308 - in /branches/1.4:
include/asterisk/ main/
asterisk-commits at lists.digium.com
asterisk-commits at lists.digium.com
Tue Jun 5 08:51:53 MST 2007
Author: russell
Date: Tue Jun 5 10:51:53 2007
New Revision: 67308
URL: http://svn.digium.com/view/asterisk?view=rev&rev=67308
Log:
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)
Modified:
branches/1.4/include/asterisk/module.h
branches/1.4/main/asterisk.c
branches/1.4/main/loader.c
Modified: branches/1.4/include/asterisk/module.h
URL: http://svn.digium.com/view/asterisk/branches/1.4/include/asterisk/module.h?view=diff&rev=67308&r1=67307&r2=67308
==============================================================================
--- branches/1.4/include/asterisk/module.h (original)
+++ branches/1.4/include/asterisk/module.h Tue Jun 5 10:51:53 2007
@@ -134,6 +134,13 @@
*/
int ast_loader_unregister(int (*updater)(void));
+/*!
+ * \brief Run the unload() callback for all loaded modules
+ *
+ * This function should be called when Asterisk is shutting down gracefully.
+ */
+void ast_module_shutdown(void);
+
/*!
* \brief Match modules names for the Asterisk cli.
* \param line Unused by this function, but this should be the line we are
Modified: branches/1.4/main/asterisk.c
URL: http://svn.digium.com/view/asterisk/branches/1.4/main/asterisk.c?view=diff&rev=67308&r1=67307&r2=67308
==============================================================================
--- branches/1.4/main/asterisk.c (original)
+++ branches/1.4/main/asterisk.c Tue Jun 5 10:51:53 2007
@@ -124,6 +124,7 @@
#include "asterisk/version.h"
#include "asterisk/linkedlists.h"
#include "asterisk/devicestate.h"
+#include "asterisk/module.h"
#include "asterisk/doxyref.h" /* Doxygen documentation */
@@ -1253,6 +1254,9 @@
ast_verbose("Asterisk %s cancelled.\n", restart ? "restart" : "shutdown");
return;
}
+
+ if (nice)
+ ast_module_shutdown();
}
if (ast_opt_console || ast_opt_remote) {
if (getenv("HOME"))
Modified: branches/1.4/main/loader.c
URL: http://svn.digium.com/view/asterisk/branches/1.4/main/loader.c?view=diff&rev=67308&r1=67307&r2=67308
==============================================================================
--- branches/1.4/main/loader.c (original)
+++ branches/1.4/main/loader.c Tue Jun 5 10:51:53 2007
@@ -427,6 +427,31 @@
}
#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;
More information about the asterisk-commits
mailing list