Gitiles
Code Review
Sign In
192.168.1.100
/
T106_DC
/
9ed821d7e5d875a3395740a9cc2545671fa429b7
/
.
/
ap
/
build
/
uClibc
/
test
/
tls
/
tst-tlsmod13.c
blob: beca89f6fec753d4f972bb42b8d10f97e772006a [
file
] [
log
] [
blame
]
#include
<tls.h>
#if defined USE_TLS && defined HAVE___THREAD \
&&
defined HAVE_TLS_MODEL_ATTRIBUTE
__thread
int
a
[
2
]
__attribute__
((
tls_model
(
"initial-exec"
)));
#else
int
a
[
2
];
#endif
int
foo
(
void
)
{
return
a
[
0
];
}