mirror of
https://github.com/MariaDB/server.git
synced 2025-01-18 13:02:28 +01:00
Merge
include/my_pthread.h: fix merge conflict
This commit is contained in:
commit
d9adebfa24
1 changed files with 3 additions and 1 deletions
|
@ -631,6 +631,7 @@ extern int pthread_dummy(int);
|
|||
/* All thread specific variables are in the following struct */
|
||||
|
||||
#define THREAD_NAME_SIZE 10
|
||||
#ifndef DEFAULT_THREAD_STACK
|
||||
#if defined(__ia64__)
|
||||
/*
|
||||
MySQL can survive with 32K, but some glibc libraries require > 128K stack
|
||||
|
@ -638,7 +639,8 @@ extern int pthread_dummy(int);
|
|||
*/
|
||||
#define DEFAULT_THREAD_STACK (192*1024L)
|
||||
#else
|
||||
#define DEFAULT_THREAD_STACK (192*1024)
|
||||
#define DEFAULT_THREAD_STACK (192*1024L)
|
||||
#endif
|
||||
#endif
|
||||
|
||||
struct st_my_thread_var
|
||||
|
|
Loading…
Reference in a new issue