blob: 0f782ff404ac65999c8689555967eabb9c6f0e52 [file] [log] [blame]
Sasha Levin878f9682013-06-13 18:41:19 -04001#include <liblockdep/mutex.h>
2
3void main(void)
4{
5 pthread_mutex_t a, b;
6
7 pthread_mutex_init(&a, NULL);
8 pthread_mutex_init(&b, NULL);
9
10 pthread_mutex_lock(&a);
11 pthread_mutex_lock(&b);
12 pthread_mutex_lock(&a);
13}