[asterisk-commits] seanbright: branch 1.6.1 r199859 - in /branches/1.6.1: ./ include/asterisk/
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Wed Jun 10 11:13:20 CDT 2009
Author: seanbright
Date: Wed Jun 10 11:13:16 2009
New Revision: 199859
URL: http://svn.asterisk.org/svn-view/asterisk?view=rev&rev=199859
Log:
Merged revisions 199857 via svnmerge from
https://origsvn.digium.com/svn/asterisk/trunk
................
r199857 | seanbright | 2009-06-10 12:10:23 -0400 (Wed, 10 Jun 2009) | 9 lines
Merged revisions 199856 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.4
........
r199856 | seanbright | 2009-06-10 12:08:35 -0400 (Wed, 10 Jun 2009) | 2 lines
__WORDSIZE is not available on all platforms, so use sizeof(void *) instead.
........
................
Modified:
branches/1.6.1/ (props changed)
branches/1.6.1/include/asterisk/utils.h
Propchange: branches/1.6.1/
------------------------------------------------------------------------------
Binary property 'trunk-merged' - no diff available.
Modified: branches/1.6.1/include/asterisk/utils.h
URL: http://svn.asterisk.org/svn-view/asterisk/branches/1.6.1/include/asterisk/utils.h?view=diff&rev=199859&r1=199858&r2=199859
==============================================================================
--- branches/1.6.1/include/asterisk/utils.h (original)
+++ branches/1.6.1/include/asterisk/utils.h Wed Jun 10 11:13:16 2009
@@ -349,10 +349,10 @@
* Thread management support (should be moved to lock.h or a different header)
*/
-#define AST_STACKSIZE (((__WORDSIZE * 8) - 16) * 1024)
+#define AST_STACKSIZE (((sizeof(void *) * 8 * 8) - 16) * 1024)
#if defined(LOW_MEMORY)
-#define AST_BACKGROUND_STACKSIZE (((__WORDSIZE * 2) - 16) * 1024)
+#define AST_BACKGROUND_STACKSIZE (((sizeof(void *) * 8 * 2) - 16) * 1024)
#else
#define AST_BACKGROUND_STACKSIZE AST_STACKSIZE
#endif
More information about the asterisk-commits
mailing list