Gitiles
Code Review
Sign In
review.shift-gmbh.com
/
SHIFTPHONES
/
kernel
/
shift
/
mainline
/
8e585a6c4abdef8562308f3f307aeea6cf168e8b
/
.
/
tools
/
lib
/
lockdep
/
tests
/
ABBCCA.c
blob: 843db09ac666c14f47ddca3d941c3890837e5836 [
file
] [
log
] [
blame
]
#include
<liblockdep/mutex.h>
#include
"common.h"
void
main
(
void
)
{
pthread_mutex_t
a
,
b
,
c
;
pthread_mutex_init
(&
a
,
NULL
);
pthread_mutex_init
(&
b
,
NULL
);
pthread_mutex_init
(&
c
,
NULL
);
LOCK_UNLOCK_2
(
a
,
b
);
LOCK_UNLOCK_2
(
b
,
c
);
LOCK_UNLOCK_2
(
c
,
a
);
}