Gitiles
Code Review
Sign In
192.168.1.100
/
T106_DC
/
db4f43f0150836941f56a4d2e2923f7182328607
/
.
/
ap
/
libc
/
glibc
/
glibc-2.22
/
elf
/
tst-tls19mod3.c
blob: e7b28016b3b45097b8d763b3f80f173ade07f0d5 [
file
] [
log
] [
blame
]
#include
<stdio.h>
static
int
__thread tbaz __attribute__
((
tls_model
(
"local-dynamic"
)))
=
42
;
void
setter2
(
int
a
)
{
tbaz
=
a
;
}
int
baz
(
void
)
{
printf
(
"&tbaz=%p\n"
,
&
tbaz
);
return
tbaz
;
}