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.0-rc2 12 lines 183 B view raw
1#include <liblockdep/mutex.h> 2 3void main(void) 4{ 5 pthread_mutex_t a; 6 7 pthread_mutex_init(&a, NULL); 8 9 pthread_mutex_lock(&a); 10 pthread_mutex_unlock(&a); 11 pthread_mutex_unlock(&a); 12}