From 7128363ea48d49fadc3da6a7966fe960d818a196 Mon Sep 17 00:00:00 2001 From: seanbright Date: Mon, 8 Jun 2009 19:28:33 +0000 Subject: Fix a typo in the stack size calculation just introduced. git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@199628 f38db490-d61c-443f-a65b-d21fe96a405b --- include/asterisk/utils.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/asterisk/utils.h b/include/asterisk/utils.h index 253cfa91d..58b861bd6 100644 --- a/include/asterisk/utils.h +++ b/include/asterisk/utils.h @@ -262,7 +262,7 @@ static force_inline int inaddrcmp(const struct sockaddr_in *sin1, const struct s || (sin1->sin_port != sin2->sin_port)); } -#define AST_STACKSIZE (((__WORDSIZE * 6) - 16) * 1024) +#define AST_STACKSIZE (((__WORDSIZE * 8) - 16) * 1024) #if defined(LOW_MEMORY) #define AST_BACKGROUND_STACKSIZE (((__WORDSIZE * 2) - 16) * 1024) -- cgit v1.2.3