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