Sign in
nest-open-source
/
manifest_repos
/
kernel
/
dee7857043c15f8ffedfeee3cb4fa05b1d11f39f
/
.
/
tools
/
lib
/
lockdep
/
tests
/
unlock_balance.c
blob: 0bc62de686f7b4a51615f538d88f79447cce1310 [
file
]
#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
);
}