Sign in
nest-open-source
/
nest-cam
/
v366
/
glibc
/
refs/heads/main
/
.
/
elf
/
tst-tlsmod13a.c
blob: 70a02131ee85d8bb44605596e0eb9868fe7a89b2 [
file
] [
log
] [
blame
] [
edit
]
#include
<tls.h>
#if defined HAVE___THREAD && defined HAVE_TLS_MODEL_ATTRIBUTE
__thread
int
b
[
2
]
__attribute__
((
tls_model
(
"initial-exec"
)));
#else
int
b
[
2
];
#endif
extern
int
foo
(
void
);
int
bar
(
void
)
{
return
foo
()
+
b
[
0
];
}