mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-10 15:20:10 +00:00
16 lines
241 B
C
16 lines
241 B
C
/* This produces a makefile fragment saying `use-thread = yes' or no. */
|
|
|
|
#include <tls.h>
|
|
|
|
#if USE_TLS
|
|
@@@ use-tls = yes @@@
|
|
#else
|
|
@@@ use-tls = no @@@
|
|
#endif
|
|
|
|
#if USE___THREAD
|
|
@@@ use-thread = yes @@@
|
|
#else
|
|
@@@ use-thread = no @@@
|
|
#endif
|