Fix stack size (take 2) (bug #3706)

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@5126 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Mark Spencer
2005-03-03 16:18:44 +00:00
parent 592b27b17a
commit b9a34d8634
2 changed files with 2 additions and 12 deletions

View File

@@ -160,19 +160,12 @@ struct ast_realloca {
#endif #endif
#define inet_ntoa __dont__use__inet_ntoa__use__ast_inet_ntoa__instead__ #define inet_ntoa __dont__use__inet_ntoa__use__ast_inet_ntoa__instead__
#define AST_STACK_SIZE 128 * 1024 #define AST_STACKSIZE 128 * 1024
#ifdef __linux__ #ifdef __linux__
#define ast_pthread_create pthread_create
#define ast_strcasestr strcasestr #define ast_strcasestr strcasestr
#else #else
/* Linux threads have a default 2MB stack size. */
#ifndef PTHREAD_ATTR_STACKSIZE
#define PTHREAD_ATTR_STACKSIZE 2097152
#endif /* PTHREAD_ATTR_STACKSIZE */
extern int ast_pthread_create(pthread_t *thread, pthread_attr_t *attr, void *(*start_routine)(void *), void *data);
extern char *ast_strcasestr(const char *, const char *); extern char *ast_strcasestr(const char *, const char *);
#endif /* __linux__ */ #endif /* __linux__ */
extern int ast_pthread_create(pthread_t *thread, pthread_attr_t *attr, void *(*start_routine)(void *), void *data);
#endif #endif

View File

@@ -389,8 +389,6 @@ int ast_utils_init(void)
} }
#ifndef __linux__
#undef pthread_create /* For ast_pthread_create function only */
int ast_pthread_create(pthread_t *thread, pthread_attr_t *attr, void *(*start_routine)(void *), void *data) int ast_pthread_create(pthread_t *thread, pthread_attr_t *attr, void *(*start_routine)(void *), void *data)
{ {
pthread_attr_t lattr; pthread_attr_t lattr;
@@ -403,7 +401,6 @@ int ast_pthread_create(pthread_t *thread, pthread_attr_t *attr, void *(*start_ro
ast_log(LOG_WARNING, "pthread_attr_setstacksize returned non-zero: %s\n", strerror(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 */ return pthread_create(thread, attr, start_routine, data); /* We're in ast_pthread_create, so it's okay */
} }
#endif /* ! LINUX */
/* Case-insensitive substring matching */ /* Case-insensitive substring matching */
#ifndef LINUX #ifndef LINUX