repo.or.cz
/
valgrind.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
drd/tests/Makefile.am: Add dlopen.stdout.exp to EXTRA_DIST
[valgrind.git]
/
helgrind
/
tests
/
cond_init_destroy.c
blob
7f9cbd3551221f772dee2ea7db236ae5f7252206
1
#include <pthread.h>
2
int
main
(
int
argc
,
char
*
argv
[])
3
{
4
pthread_cond_t c
;
5
pthread_cond_init
(&
c
,
NULL
);
6
pthread_cond_destroy
(&
c
);
7
return
0
;
8
}