diff options
author | Sergei Golubchik <serg@mariadb.org> | 2022-10-21 19:40:08 +0200 |
---|---|---|
committer | Sergei Golubchik <serg@mariadb.org> | 2022-10-22 10:24:14 +0200 |
commit | 3e377fd35bf78905ea5d6564ec865d4877e924e5 (patch) | |
tree | 0f95db688922183343e2ecd39367d9da6e973858 /mysys/thr_alarm.c | |
parent | 68391acef239cc468d9c11c9bbdeebd143c188b7 (diff) | |
download | mariadb-git-3e377fd35bf78905ea5d6564ec865d4877e924e5.tar.gz |
MDEV-15795 Stack exceeded if pthread_attr_setstacksize(&thr_attr,8196) succeeds
on Linux this pthread_attr_setstacksize() fails with EINVAL
"The stack size is less than PTHREAD_STACK_MIN (16384) bytes".
But on FreeBSD it succeeds and causes a crash later, as 8196 is too little.
Let's keep the stack at its default size in the timer thread.
Diffstat (limited to 'mysys/thr_alarm.c')
-rw-r--r-- | mysys/thr_alarm.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/mysys/thr_alarm.c b/mysys/thr_alarm.c index 8a89762de2a..f6eb963c34c 100644 --- a/mysys/thr_alarm.c +++ b/mysys/thr_alarm.c @@ -114,7 +114,6 @@ void init_thr_alarm(uint max_alarms) pthread_attr_init(&thr_attr); pthread_attr_setscope(&thr_attr,PTHREAD_SCOPE_PROCESS); pthread_attr_setdetachstate(&thr_attr,PTHREAD_CREATE_DETACHED); - pthread_attr_setstacksize(&thr_attr,8196); mysql_thread_create(key_thread_alarm, &alarm_thread, &thr_attr, alarm_handler, NULL); pthread_attr_destroy(&thr_attr); |