Merge tag 'for_linus' of git://git.kernel.org/pub/scm/linux/kernel/git/mst/vhost
[cris-mirror.git] / tools / lib / lockdep / tests / WW.c
blobeee88df7fc41b90a81f87eb39e6f75247c38aad1
1 // SPDX-License-Identifier: GPL-2.0
2 #include <liblockdep/rwlock.h>
4 void main(void)
6 pthread_rwlock_t a, b;
8 pthread_rwlock_init(&a, NULL);
9 pthread_rwlock_init(&b, NULL);
11 pthread_rwlock_wrlock(&a);
12 pthread_rwlock_rdlock(&b);
13 pthread_rwlock_wrlock(&a);