Gitiles
Code Review
Sign In
LeafOS
/
LeafOS-Devices
/
android_kernel_samsung_gta4xl
/
04941aa774320eb0118339c8cd11d7f1321e74d3
/
.
/
tools
/
lib
/
lockdep
/
tests
/
unlock_balance.c
blob: 0bc62de686f7b4a51615f538d88f79447cce1310 [
file
] [
log
] [
blame
]
#include
<liblockdep/mutex.h>
void
main
(
void
)
{
pthread_mutex_t
a
;
pthread_mutex_init
(&
a
,
NULL
);
pthread_mutex_lock
(&
a
);
pthread_mutex_unlock
(&
a
);
pthread_mutex_unlock
(&
a
);
}