]> Git Repo - linux.git/blob - tools/lib/lockdep/tests/AA.c
clocksource: Exynos_mct: Use irq_force_affinity() in cpu bringup
[linux.git] / tools / lib / lockdep / tests / AA.c
1 #include <liblockdep/mutex.h>
2
3 void 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 }
This page took 0.02655 seconds and 4 git commands to generate.