[asterisk-commits] file: branch 1.8 r355009 - /branches/1.8/pbx/pbx_config.c
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Mon Feb 13 13:49:23 CST 2012
Author: file
Date: Mon Feb 13 13:49:19 2012
New Revision: 355009
URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=355009
Log:
Only allow one 'dialplan reload' to execute at a time as otherwise they would share the same common local context list.
(closes issue AST-758)
Modified:
branches/1.8/pbx/pbx_config.c
Modified: branches/1.8/pbx/pbx_config.c
URL: http://svnview.digium.com/svn/asterisk/branches/1.8/pbx/pbx_config.c?view=diff&rev=355009&r1=355008&r2=355009
==============================================================================
--- branches/1.8/pbx/pbx_config.c (original)
+++ branches/1.8/pbx/pbx_config.c Mon Feb 13 13:49:19 2012
@@ -54,6 +54,8 @@
static char *overrideswitch_config = NULL;
AST_MUTEX_DEFINE_STATIC(save_dialplan_lock);
+
+AST_MUTEX_DEFINE_STATIC(reload_lock);
static struct ast_context *local_contexts = NULL;
static struct ast_hashtab *local_table = NULL;
@@ -1762,17 +1764,23 @@
{
struct ast_context *con;
+ ast_mutex_lock(&reload_lock);
+
if (!local_table)
local_table = ast_hashtab_create(17, ast_hashtab_compare_contexts, ast_hashtab_resize_java, ast_hashtab_newsize_java, ast_hashtab_hash_contexts, 0);
- if (!pbx_load_config(config))
+ if (!pbx_load_config(config)) {
+ ast_mutex_unlock(&reload_lock);
return AST_MODULE_LOAD_DECLINE;
+ }
pbx_load_users();
ast_merge_contexts_and_delete(&local_contexts, local_table, registrar);
local_table = NULL; /* the local table has been moved into the global one. */
local_contexts = NULL;
+
+ ast_mutex_unlock(&reload_lock);
for (con = NULL; (con = ast_walk_contexts(con));)
ast_context_verify_includes(con);
More information about the asterisk-commits
mailing list