Sign in
gem5
/
arm
/
linux
/
3e64fcbdbd10e46dede502d507dbcc104837cd59
/
.
/
tools
/
lib
/
lockdep
/
tests
/
AA.c
blob: 18211a5f354fe53e2a0650fe1ca9150956fd5b7a [
file
] [
log
] [
blame
]
#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
;
}