Gitiles
Code Review
Sign In
192.168.1.100
/
T106_DC
/
aef17607fcd98e0a897542cd02aed0bab0d12eb5
/
.
/
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
;
}