mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-11 07:40:05 +00:00
15 lines
255 B
C
15 lines
255 B
C
|
/* This file defines USE___THREAD to 1 or 0 to cut down on the #if mess. */
|
||
|
|
||
|
#include_next <tls.h>
|
||
|
|
||
|
#if USE_TLS && HAVE___THREAD \
|
||
|
&& (!defined NOT_IN_libc || defined IS_IN_libpthread)
|
||
|
|
||
|
# define USE___THREAD 1
|
||
|
|
||
|
#else
|
||
|
|
||
|
# define USE___THREAD 0
|
||
|
|
||
|
#endif
|