Merge tag 'for_linus' of git://git.kernel.org/pub/scm/linux/kernel/git/mst/vhost
[cris-mirror.git] / tools / lib / lockdep / tests / unlock_balance.c
blob34cf32f689de00723cb0c7c55ccc29a77454c010
1 // SPDX-License-Identifier: GPL-2.0
2 #include <liblockdep/mutex.h>
4 void main(void)
6 pthread_mutex_t a;
8 pthread_mutex_init(&a, NULL);
10 pthread_mutex_lock(&a);
11 pthread_mutex_unlock(&a);
12 pthread_mutex_unlock(&a);