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
Increase test case timeout
[glibc.git]
/
elf
/
tst-tlsmod13a.c
blob
d5515d4a15ff519820ddfe2fe08de880dc9c66ad
1
#include <tls.h>
2
3
__thread
int
b
[
2
]
__attribute__
((
tls_model
(
"initial-exec"
)));
4
5
extern
int
foo
(
void
);
6
7
int
8
bar
(
void
)
9
{
10
return
foo
() +
b
[
0
];
11
}