summaryrefslogtreecommitdiff
path: root/main
diff options
context:
space:
mode:
authorMark Michelson <mmichelson@digium.com>2012-12-13 15:40:03 +0000
committerMark Michelson <mmichelson@digium.com>2012-12-13 15:40:03 +0000
commit71b1e411b026aa14f0ad3cfeb4e8d7fcdc6a6ea7 (patch)
tree2cfba85cfbdd4c54e49a4fa8a58762c8dd63e2d2 /main
parentd33e46a47f37fb462a07a8c185259eac35411121 (diff)
Re-add taskprocessor cleanup code that was removed by the UUID merge.
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@377975 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'main')
-rw-r--r--main/taskprocessor.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/main/taskprocessor.c b/main/taskprocessor.c
index 912f891b1..d8f1af3e8 100644
--- a/main/taskprocessor.c
+++ b/main/taskprocessor.c
@@ -122,10 +122,15 @@ static struct ast_cli_entry taskprocessor_clis[] = {
AST_CLI_DEFINE(cli_tps_report, "List instantiated task processors and statistics"),
};
-/*! \internal \brief Clean up resources on Asterisk shutdown */
+/*!
+ * \internal
+ * \brief Clean up resources on Asterisk shutdown
+ */
static void tps_shutdown(void)
{
+ ast_cli_unregister_multiple(taskprocessor_clis, ARRAY_LEN(taskprocessor_clis));
ao2_t_ref(tps_singletons, -1, "Unref tps_singletons in shutdown");
+ tps_singletons = NULL;
}
/* initialize the taskprocessor container and register CLI operations */