Sign in
gem5
/
arm
/
linux
/
38c53af853069adf87181684370d7b8866d6387b
/
.
/
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
);
}