aboutsummaryrefslogtreecommitdiffstats
path: root/pbx.c
diff options
context:
space:
mode:
authorkpfleming <kpfleming@f38db490-d61c-443f-a65b-d21fe96a405b>2005-09-02 18:07:26 +0000
committerkpfleming <kpfleming@f38db490-d61c-443f-a65b-d21fe96a405b>2005-09-02 18:07:26 +0000
commit6bb906000332b0a8e3e25603710e64c7dbae5047 (patch)
treefc51e997f8e20a71fcdb0a898cd6eda3bb057e71 /pbx.c
parent0f49897f816ad221003a5cd8bb3931fa0a89c917 (diff)
remove unused header and old comment
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@6503 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'pbx.c')
-rwxr-xr-xpbx.c7
1 files changed, 2 insertions, 5 deletions
diff --git a/pbx.c b/pbx.c
index 9db31faa1..7d836d28f 100755
--- a/pbx.c
+++ b/pbx.c
@@ -16,7 +16,6 @@
#include <unistd.h>
#include <stdlib.h>
#include <stdio.h>
-#include <setjmp.h>
#include <ctype.h>
#include <errno.h>
#include <time.h>
@@ -2411,10 +2410,8 @@ out:
static void *pbx_thread(void *data)
{
/* Oh joyeous kernel, we're a new thread, with nothing to do but
- answer this channel and get it going. The setjmp stuff is fairly
- confusing, but necessary to get smooth transitions between
- the execution of different applications (without the use of
- additional threads) */
+ answer this channel and get it going.
+ */
struct ast_channel *c = data;
ast_pbx_run(c);
pthread_exit(NULL);