dect
/
asterisk
Archived
13
0
Fork 0

Support > 300 threads on x86-32 and other 32-bit systems

git-svn-id: http://svn.digium.com/svn/asterisk/trunk@5123 f38db490-d61c-443f-a65b-d21fe96a405b
This commit is contained in:
markster 2005-03-03 03:46:41 +00:00
parent 7b7ffe166c
commit aaf77c9c1e
2 changed files with 3 additions and 1 deletions

View File

@ -160,6 +160,8 @@ struct ast_realloca {
#endif
#define inet_ntoa __dont__use__inet_ntoa__use__ast_inet_ntoa__instead__
#define AST_STACK_SIZE 128 * 1024
#ifdef __linux__
#define ast_pthread_create pthread_create
#define ast_strcasestr strcasestr

View File

@ -398,7 +398,7 @@ int ast_pthread_create(pthread_t *thread, pthread_attr_t *attr, void *(*start_ro
pthread_attr_init(&lattr);
attr = &lattr;
}
errno = pthread_attr_setstacksize(attr, PTHREAD_ATTR_STACKSIZE);
errno = pthread_attr_setstacksize(attr, AST_STACKSIZE);
if (errno)
ast_log(LOG_WARNING, "pthread_attr_setstacksize returned non-zero: %s\n", strerror(errno));
return pthread_create(thread, attr, start_routine, data); /* We're in ast_pthread_create, so it's okay */