mirror of
https://github.com/MariaDB/server.git
synced 2025-01-16 03:52:35 +01:00
my_pthread.c:
Backport of correction for Mac OS X build problem, global variable not initiated is "common" and can't be used in shared libraries, unless special flags are used (bug#26218) mysys/my_pthread.c: Backport of correction for Mac OS X build problem, global variable not initiated is "common" and can't be used in shared libraries, unless special flags are used (bug#26218)
This commit is contained in:
parent
947e42af55
commit
8d0526a82d
1 changed files with 1 additions and 1 deletions
|
@ -30,7 +30,7 @@
|
|||
#define SCHED_POLICY SCHED_OTHER
|
||||
#endif
|
||||
|
||||
uint thd_lib_detected;
|
||||
uint thd_lib_detected= 0;
|
||||
|
||||
#ifndef my_pthread_setprio
|
||||
void my_pthread_setprio(pthread_t thread_id,int prior)
|
||||
|
|
Loading…
Reference in a new issue