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