Gitiles
Code Review
Sign In
LeafOS
/
LeafOS-Devices
/
android_kernel_realme_mt6785
/
28781c64f1a190501b0381698ad630a63a5bd550
/
.
/
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
;
}