[svn-commits] seanbright: branch 1.4 r199628 - /branches/1.4/include/asterisk/utils.h

SVN commits to the Digium repositories svn-commits at lists.digium.com
Mon Jun 8 14:28:36 CDT 2009


Author: seanbright
Date: Mon Jun  8 14:28:33 2009
New Revision: 199628

URL: http://svn.asterisk.org/svn-view/asterisk?view=rev&rev=199628
Log:
Fix a typo in the stack size calculation just introduced.

Modified:
    branches/1.4/include/asterisk/utils.h

Modified: branches/1.4/include/asterisk/utils.h
URL: http://svn.asterisk.org/svn-view/asterisk/branches/1.4/include/asterisk/utils.h?view=diff&rev=199628&r1=199627&r2=199628
==============================================================================
--- branches/1.4/include/asterisk/utils.h (original)
+++ branches/1.4/include/asterisk/utils.h Mon Jun  8 14:28:33 2009
@@ -262,7 +262,7 @@
 		|| (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)




More information about the svn-commits mailing list