summaryrefslogtreecommitdiff
path: root/pbx/pbx_config.c
diff options
context:
space:
mode:
authorMark Spencer <markster@digium.com>2003-08-13 15:25:16 +0000
committerMark Spencer <markster@digium.com>2003-08-13 15:25:16 +0000
commit1bb58646de07501c96c53a963820ef70f73d50c5 (patch)
tree3f2cc11c392b1496cf6518e8b6eb99e8b04417a1 /pbx/pbx_config.c
parent4a396046fec3026140078479ff73fe3a98728bee (diff)
Totally revamp thread debugging to support locating and removing deadlocks
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@1310 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'pbx/pbx_config.c')
-rwxr-xr-xpbx/pbx_config.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/pbx/pbx_config.c b/pbx/pbx_config.c
index 1514503c3..c6c6190fb 100755
--- a/pbx/pbx_config.c
+++ b/pbx/pbx_config.c
@@ -42,7 +42,7 @@ static char *registrar = "pbx_config";
static int static_config = 0;
static int write_protect_config = 1;
-static pthread_mutex_t save_dialplan_lock = AST_MUTEX_INITIALIZER;
+static ast_mutex_t save_dialplan_lock = AST_MUTEX_INITIALIZER;
static struct ast_context *local_contexts = NULL;
@@ -916,7 +916,7 @@ static int handle_save_dialplan(int fd, int argc, char *argv[])
if (argc != 2 && argc != 3) return RESULT_SHOWUSAGE;
- if (ast_pthread_mutex_lock(&save_dialplan_lock)) {
+ if (ast_mutex_lock(&save_dialplan_lock)) {
ast_cli(fd,
"Failed to lock dialplan saving (another proccess saving?)\n");
return RESULT_FAILURE;
@@ -945,7 +945,7 @@ static int handle_save_dialplan(int fd, int argc, char *argv[])
/* try to lock contexts list */
if (ast_lock_contexts()) {
ast_cli(fd, "Failed to lock contexts list\n");
- ast_pthread_mutex_unlock(&save_dialplan_lock);
+ ast_mutex_unlock(&save_dialplan_lock);
return RESULT_FAILURE;
}
@@ -954,7 +954,7 @@ static int handle_save_dialplan(int fd, int argc, char *argv[])
ast_cli(fd, "Failed to create file '%s'\n",
filename);
ast_unlock_contexts();
- ast_pthread_mutex_unlock(&save_dialplan_lock);
+ ast_mutex_unlock(&save_dialplan_lock);
return RESULT_FAILURE;
}
@@ -1077,7 +1077,7 @@ static int handle_save_dialplan(int fd, int argc, char *argv[])
}
ast_unlock_contexts();
- ast_pthread_mutex_unlock(&save_dialplan_lock);
+ ast_mutex_unlock(&save_dialplan_lock);
fclose(output);
if (incomplete) {