repo.or.cz
/
linux
/
fpc-iii.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Merge branch 'mixed-mode' into efi-for-mingo
[linux/fpc-iii.git]
/
tools
/
lib
/
lockdep
/
tests
/
unlock_balance.c
blob
0bc62de686f7b4a51615f538d88f79447cce1310
1
#include <liblockdep/mutex.h>
2
3
void
main
(
void
)
4
{
5
pthread_mutex_t a
;
6
7
pthread_mutex_init
(&
a
,
NULL
);
8
9
pthread_mutex_lock
(&
a
);
10
pthread_mutex_unlock
(&
a
);
11
pthread_mutex_unlock
(&
a
);
12
}