Gitiles
Code Review
Sign In
LeafOS
/
LeafOS-Devices
/
android_kernel_samsung_gta4xl
/
63dfef75ed75364901d7caa52c6420cec3e73519
/
.
/
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
;
}