Merge branches 'acpi-soc', 'acpi-misc', 'acpi-pci' and 'device-properties'
[cascardo/linux.git] / tools / lib / lockdep / tests / AA.c
1 #include <liblockdep/mutex.h>
2
3 int main(void)
4 {
5         pthread_mutex_t a;
6
7         pthread_mutex_init(&a, NULL);
8
9         pthread_mutex_lock(&a);
10         pthread_mutex_lock(&a);
11
12         return 0;
13 }