Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
kernel
/
msm-4.19
/
91a5c1ecba9f23f247b3772e6d54aabfebc0e300
/
.
/
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
);
}