Fix a typo in the stack size calculation just introduced.

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.4@199628 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Sean Bright
2009-06-08 19:28:33 +00:00
parent 0d849d509d
commit aea9d7d060

View File

@@ -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)