Gitiles
Code Review
Sign In
review.shift-gmbh.com
/
SHIFTPHONES
/
mainline
/
linux
/
d3bad75a6d57416cf7478ca2a1e42f699bc17ec5
/
.
/
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
);
}