From: Mark Spencer Date: Sun, 25 Sep 2005 16:52:04 +0000 (+0000) Subject: Fix restart in Mac OSX (bug #5251) X-Git-Tag: 1.2.0-beta2~274 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=fcc0b23e180802ddb8f704d1165d27d84718b345;p=thirdparty%2Fasterisk.git Fix restart in Mac OSX (bug #5251) git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@6643 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/asterisk.c b/asterisk.c index 7c74e67f17..2aa7c0c52e 100755 --- a/asterisk.c +++ b/asterisk.c @@ -856,7 +856,7 @@ static void quit_handler(int num, int nice, int safeshutdown, int restart) /* If there is a consolethread running send it a SIGHUP so it can execvp, otherwise we can do it ourselves */ - if (consolethread != AST_PTHREADT_NULL) { + if ((consolethread != AST_PTHREADT_NULL) && (consolethread != pthread_self())) { pthread_kill(consolethread, SIGHUP); /* Give the signal handler some time to complete */ sleep(2);