Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v4.7-rc4 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}