Sign in
kunit
/
linux
/
b155a7306dc1643a15478591e045ae332890ab0c
/
.
/
tools
/
lib
/
lockdep
/
tests
/
AA.c
blob: 63c7ce97bda3a9f703816997477105b1f3a7462a [
file
] [
log
] [
blame
]
// SPDX-License-Identifier: GPL-2.0
#include
<liblockdep/mutex.h>
int
main
(
void
)
{
pthread_mutex_t
a
;
pthread_mutex_init
(&
a
,
NULL
);
pthread_mutex_lock
(&
a
);
pthread_mutex_lock
(&
a
);
return
0
;
}