Sign in
gem5
/
arm
/
linux
/
861d75d098e2d0a2d7692c9d6a30b6fd2c81387c
/
.
/
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
;
}