Sign in
zircon-guest
/
third_party
/
linux
/
4697abe3837e4cc6dfb2c50f6c46b2d426f2ae90
/
.
/
tools
/
lib
/
lockdep
/
tests
/
ABBA.c
blob: 1460afd33d712c2469982190ea7a08019b3c0295 [
file
] [
log
] [
blame
]
// SPDX-License-Identifier: GPL-2.0
#include
<liblockdep/mutex.h>
#include
"common.h"
void
main
(
void
)
{
pthread_mutex_t
a
,
b
;
pthread_mutex_init
(&
a
,
NULL
);
pthread_mutex_init
(&
b
,
NULL
);
LOCK_UNLOCK_2
(
a
,
b
);
LOCK_UNLOCK_2
(
b
,
a
);
}