Sign in
android-kvm
/
linux
/
fa5fca78bb2fe7a58ae7297407dcda1914ea8353
/
.
/
tools
/
lib
/
lockdep
/
tests
/
unlock_balance.c
blob: dba25064b50a83d4b0e5a8b1d6140b0c81c22817 [
file
] [
log
] [
blame
]
// SPDX-License-Identifier: GPL-2.0
#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
);
pthread_mutex_destroy
(&
a
);
}