repo.or.cz
/
glibc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Update vi translation file.
[glibc.git]
/
elf
/
tst-tlsmod15b.c
blob
4f63eab1446db453a9975e173bfdab415c261e39
1
#include
"tst-tls10.h"
2
3
#ifdef USE_TLS__THREAD
4
__thread
int
mod15b_var
__attribute__
((
tls_model
(
"initial-exec"
)));
5
6
int
7
in_dso
(
void
)
8
{
9
return
mod15b_var
;
10
}
11
#else
12
int
13
in_dso
(
void
)
14
{
15
return
0
;
16
}
17
#endif