Sign in
gem5
/
arm
/
linux-arm64-legacy
/
e0463e42d7b73654f39f6a155f82f0b72ad5258a
/
.
/
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
);
}