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