1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-29 05:21:33 +03:00

Provide a default "minimum thread stack size" PTHREAD_STACK_MIN where it is missing.

(Currently, affects only BSD with Linuxthreads)
This commit is contained in:
joerg@mysql.com
2005-11-10 14:24:54 +01:00
parent 4015635bcd
commit 74c57a6dc9

View File

@ -76,6 +76,9 @@ int set_stacksize_n_create_thread(pthread_t *thread, pthread_attr_t *attr,
int rc= 0;
#ifndef __WIN__
#ifndef PTHREAD_STACK_MIN
#define PTHREAD_STACK_MIN 32768
#endif
/*
Set stack size to be safe on the platforms with too small
default thread stack.