 |
MobilityDB 1.3
|
Loading...
Searching...
No Matches
Go to the documentation of this file.
47#if defined(__cplusplus) && __cplusplus >= 201103L
48#define MEOS_TLS thread_local
49#elif defined(__STDC_VERSION__) && __STDC_VERSION__ >= 201112L && \
50 !defined(__STDC_NO_THREADS__)
51#define MEOS_TLS _Thread_local
52#elif defined(_MSC_VER)
53#define MEOS_TLS __declspec(thread)
54#elif defined(__GNUC__) || defined(__clang__) || defined(__INTEL_COMPILER)
55#define MEOS_TLS __thread