Sign in
gfiber
/
kernel
/
lockdown
/
997266390659fb562bd4cad3cfba9b816585e628
/
.
/
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
);
}