Sign in
third-party-mirror
/
GRTEv5
/
refs/heads/master
/
.
/
google3
/
third_party
/
grte
/
v5_src
/
glibc-2.27
/
elf
/
tst-tls19mod2.c
blob: cae702f67c334ea881bfd55915882ba391909f8b [
file
] [
log
] [
blame
] [
edit
]
static
int
__thread tbar __attribute__
((
tls_model
(
"initial-exec"
)))
=
666
;
void
setter
(
int
a
)
{
tbar
=
a
;
}
int
bar
(
void
)
{
return
tbar
;
}