Fix monitor thread issue.

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@1995 65c4cc65-6c06-0410-ace0-fbb531ad65f3
1.0
Jeremy McNamara 22 years ago
parent 4231743209
commit 0f4379d111

@ -1899,7 +1899,7 @@ static int handle_message(skinny_req *req, struct skinnysession *s)
break; break;
case STIMULUS_TRANSFER: case STIMULUS_TRANSFER:
if (skinnydebug) { if (skinnydebug) {
printf("Recieved Stimulus: Transfer(%d)", stimulusInstance); printf("Recieved Stimulus: Transfer(%d)\n", stimulusInstance);
} }
transmit_tone(s, SKINNY_DIALTONE); transmit_tone(s, SKINNY_DIALTONE);
@ -2736,7 +2736,7 @@ int unload_module()
return -1; return -1;
} }
if (!ast_mutex_lock(&monlock)) { if (!ast_mutex_lock(&monlock)) {
if (monitor_thread) { if (monitor_thread && (monitor_thread != -2)) {
pthread_cancel(monitor_thread); pthread_cancel(monitor_thread);
pthread_kill(monitor_thread, SIGURG); pthread_kill(monitor_thread, SIGURG);
pthread_join(monitor_thread, NULL); pthread_join(monitor_thread, NULL);

Loading…
Cancel
Save