diff options
author | serg@serg.mylan <> | 2004-02-02 19:32:05 +0100 |
---|---|---|
committer | serg@serg.mylan <> | 2004-02-02 19:32:05 +0100 |
commit | 745f06e82aa1be575e17668668b6768043271fc2 (patch) | |
tree | c94619527f7812500ca6497738413c885fcd4e59 /sql/mysqld.cc | |
parent | 348a184a7df032903ab218b868a3bae2be21efa9 (diff) | |
download | mariadb-git-745f06e82aa1be575e17668668b6768043271fc2.tar.gz |
increase the size of a signal thread's stack (the old one was too small for the thread to be created on some systems)
bug#2599
Diffstat (limited to 'sql/mysqld.cc')
-rw-r--r-- | sql/mysqld.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/mysqld.cc b/sql/mysqld.cc index 14db51cf6fd..2ab2e33ce2f 100644 --- a/sql/mysqld.cc +++ b/sql/mysqld.cc @@ -1689,7 +1689,7 @@ static void start_signal_handler(void) (void) pthread_attr_setdetachstate(&thr_attr,PTHREAD_CREATE_DETACHED); if (!(opt_specialflag & SPECIAL_NO_PRIOR)) my_pthread_attr_setprio(&thr_attr,INTERRUPT_PRIOR); - pthread_attr_setstacksize(&thr_attr,32768); + pthread_attr_setstacksize(&thr_attr,thread_stack); #endif (void) pthread_mutex_lock(&LOCK_thread_count); |