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
* elf/Makefile (check-localplt.out): Also check libresolv and
[glibc.git]
/
nptl
/
tst-exit2.c
blob
3f5ff27b0fdd545aff0dcb34b117fe1d87b38e73
1
#include <pthread.h>
2
#include <signal.h>
3
#include <stdio.h>
4
#include <string.h>
5
#include <unistd.h>
6
7
8
static void
*
9
tf
(
void
*
arg
)
10
{
11
while
(
1
)
12
sleep
(
100
);
13
14
/* NOTREACHED */
15
return
NULL
;
16
}
17
18
19
static int
20
do_test
(
void
)
21
{
22
pthread_t th
;
23
24
int
e
=
pthread_create
(&
th
,
NULL
,
tf
,
NULL
);
25
if
(
e
!=
0
)
26
{
27
printf
(
"create failed: %s
\n
"
,
strerror
(
e
));
28
return
1
;
29
}
30
31
/* Terminate only this thread. */
32
pthread_exit
(
NULL
);
33
34
/* NOTREACHED */
35
return
1
;
36
}
37
38
#define EXPECTED_SIGNAL SIGALRM
39
#define TEST_FUNCTION do_test ()
40
#include
"../test-skeleton.c"