blob: efa39b23f05d0c3b50f2900c79776b24537929a9 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Alfredo Alvarez Fernandez11a1ac22016-02-19 07:48:52 +01002#include <liblockdep/mutex.h>
3
4void main(void)
5{
6 pthread_mutex_t a, b;
7
8 pthread_mutex_init(&a, NULL);
9 pthread_mutex_init(&b, NULL);
10
11 pthread_mutex_lock(&a);
12 pthread_mutex_lock(&b);
13 pthread_mutex_lock(&a);
14}