Gitiles
Code Review
Sign In
192.168.1.100
/
T106_DC
/
840274949b51231d437658bd7f97c19a9b7fe8c2
/
.
/
ap
/
libc
/
glibc
/
glibc-2.23
/
elf
/
tst-tls19mod2.c
blob: cae702f67c334ea881bfd55915882ba391909f8b [
file
] [
log
] [
blame
]
static
int
__thread tbar __attribute__
((
tls_model
(
"initial-exec"
)))
=
666
;
void
setter
(
int
a
)
{
tbar
=
a
;
}
int
bar
(
void
)
{
return
tbar
;
}