Sign in
coral
/
linux-imx
/
48d11ce82cdb7151be43a43d1110a511cc6d2b47
/
.
/
tools
/
lib
/
lockdep
/
tests
/
AA.c
blob: 18211a5f354fe53e2a0650fe1ca9150956fd5b7a [
file
] [
log
] [
blame
]
#include
<liblockdep/mutex.h>
int
main
(
void
)
{
pthread_mutex_t
a
;
pthread_mutex_init
(&
a
,
NULL
);
pthread_mutex_lock
(&
a
);
pthread_mutex_lock
(&
a
);
return
0
;
}