From: Mark Spencer Date: Fri, 4 Mar 2005 22:37:25 +0000 (+0000) Subject: Fix stack size for ADSI (needs 128k by itself!) X-Git-Tag: 1.2.0-beta1~1119 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=bb3a461b494b0b1b81bac59529950329c33a1ccc;p=thirdparty%2Fasterisk.git Fix stack size for ADSI (needs 128k by itself!) git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@5138 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/include/asterisk/utils.h b/include/asterisk/utils.h index e2585e56ce..f766ff4ca1 100755 --- a/include/asterisk/utils.h +++ b/include/asterisk/utils.h @@ -160,7 +160,7 @@ struct ast_realloca { #endif #define inet_ntoa __dont__use__inet_ntoa__use__ast_inet_ntoa__instead__ -#define AST_STACKSIZE 128 * 1024 +#define AST_STACKSIZE 256 * 1024 #define ast_pthread_create(a,b,c,d) ast_pthread_create_stack(a,b,c,d,0) #ifdef __linux__ #define ast_strcasestr strcasestr