mirror of
https://github.com/MariaDB/server.git
synced 2025-01-30 10:31:54 +01:00
9 lines
281 B
C++
9 lines
281 B
C++
|
|
/*
|
|
* DO not delete this file. The hack here ensures that pthread_init() gets
|
|
* called before main does. This doesn't fix everything. It is still
|
|
* possible for a c++ module to reley on constructors that need pthreads.
|
|
*/
|
|
#include <pthread.h>
|
|
|
|
char __pthread_init_hack = 42;
|