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
WIP FPC-III support
[linux/fpc-iii.git]
/
tools
/
lib
/
lockdep
/
tests
/
AA.c
blob
63c7ce97bda3a9f703816997477105b1f3a7462a
1
// SPDX-License-Identifier: GPL-2.0
2
#include <liblockdep/mutex.h>
3
4
int
main
(
void
)
5
{
6
pthread_mutex_t a
;
7
8
pthread_mutex_init
(&
a
,
NULL
);
9
10
pthread_mutex_lock
(&
a
);
11
pthread_mutex_lock
(&
a
);
12
13
return
0
;
14
}