From: Tilghman Lesher Date: Mon, 12 Jun 2006 15:30:32 +0000 (+0000) Subject: Merged revisions 33615 via svnmerge from X-Git-Tag: 1.4.0-beta1~927 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1d8804c117f286c57afe6aef617c2f11a2e284f2;p=thirdparty%2Fasterisk.git Merged revisions 33615 via svnmerge from https://origsvn.digium.com/svn/asterisk/branches/1.2 ........ r33615 | tilghman | 2006-06-12 10:27:18 -0500 (Mon, 12 Jun 2006) | 4 lines Move set priority up, because at this point in the code, stdout is no longer the console. If we're unable to set priority, the error goes to Asterisk as if it were an AGI command (issue 7335). ........ git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@33616 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/res/res_agi.c b/res/res_agi.c index 1d6cd9257a..62ecea59b8 100644 --- a/res/res_agi.c +++ b/res/res_agi.c @@ -305,6 +305,9 @@ static enum agi_result launch_script(char *script, char *argv[], int *fds, int * setenv("AST_KEY_DIR", ast_config_AST_KEY_DIR, 1); setenv("AST_RUN_DIR", ast_config_AST_RUN_DIR, 1); + /* Don't run AGI scripts with realtime priority -- it causes audio stutter */ + ast_set_priority(0); + /* Redirect stdin and out, provide enhanced audio channel if desired */ dup2(fromast[0], STDIN_FILENO); dup2(toast[1], STDOUT_FILENO); @@ -324,9 +327,6 @@ static enum agi_result launch_script(char *script, char *argv[], int *fds, int * for (x=STDERR_FILENO + 2;x<1024;x++) close(x); - /* Don't run AGI scripts with realtime priority -- it causes audio stutter */ - ast_set_priority(0); - /* Execute script */ execv(script, argv); /* Can't use ast_log since FD's are closed */