Commit c5bb750f authored by unknown's avatar unknown
Browse files

Portability fix to work around OS X -x86 toolchain bug with common (uninitialized data) symbols


mysys/my_pthread.c:
  Initialize thd_lib_detected for portability (OS X -x86)
parent f9b53a4e
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -29,7 +29,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)