Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
at v4.7-rc3 13 lines 165 B view raw
1#include <liblockdep/mutex.h> 2 3int main(void) 4{ 5 pthread_mutex_t a; 6 7 pthread_mutex_init(&a, NULL); 8 9 pthread_mutex_lock(&a); 10 pthread_mutex_lock(&a); 11 12 return 0; 13}