repo.or.cz
/
glibc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
2.3.4-2
[glibc.git]
/
include
/
tls.h
blob
ffd3e4e70c812a6ef38f7fc10405a3eb057bc4a6
1
/* This file defines USE___THREAD to 1 or 0 to cut down on the #if mess. */
2
3
#ifndef _include_tls_h
4
#define _include_tls_h 1
5
6
#include_next <tls.h>
7
8
#if USE_TLS && HAVE___THREAD \
9
&& (!defined NOT_IN_libc || defined IS_IN_libpthread)
10
11
# define USE___THREAD 1
12
13
#else
14
15
# define USE___THREAD 0
16
17
#endif
18
19
#endif