Sign in
coral
/
linux-mtk
/
287296bd685d796e050be9e2911d28cfc0794d13
/
.
/
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
);
}