Searched refs:pthread_mutex_t (Results 1 – 33 of 33) sorted by relevance
/linux-4.4.14/tools/lib/lockdep/ |
D | preload.c | 43 extern int __pthread_mutex_init(pthread_mutex_t *mutex, const pthread_mutexattr_t *attr); 44 extern int __pthread_mutex_lock(pthread_mutex_t *mutex); 45 extern int __pthread_mutex_trylock(pthread_mutex_t *mutex); 46 extern int __pthread_mutex_unlock(pthread_mutex_t *mutex); 47 extern int __pthread_mutex_destroy(pthread_mutex_t *mutex); 55 static int (*ll_pthread_mutex_init)(pthread_mutex_t *mutex, 57 static int (*ll_pthread_mutex_lock)(pthread_mutex_t *mutex) = __pthread_mutex_lock; 58 static int (*ll_pthread_mutex_trylock)(pthread_mutex_t *mutex) = __pthread_mutex_trylock; 59 static int (*ll_pthread_mutex_unlock)(pthread_mutex_t *mutex) = __pthread_mutex_unlock; 60 static int (*ll_pthread_mutex_destroy)(pthread_mutex_t *mutex) = __pthread_mutex_destroy; [all …]
|
/linux-4.4.14/tools/lib/lockdep/include/liblockdep/ |
D | mutex.h | 8 pthread_mutex_t mutex; 61 #define pthread_mutex_t liblockdep_pthread_mutex_t macro
|
/linux-4.4.14/tools/testing/selftests/timers/ |
D | threadtest.c | 39 pthread_mutex_t list_lock = PTHREAD_MUTEX_INITIALIZER; 41 pthread_mutex_t print_lock = PTHREAD_MUTEX_INITIALIZER;
|
/linux-4.4.14/tools/lib/lockdep/tests/ |
D | unlock_balance.c | 5 pthread_mutex_t a; in main()
|
D | ABBA.c | 6 pthread_mutex_t a, b; in main()
|
D | AA.c | 5 pthread_mutex_t a, b; in main()
|
D | ABBCCA.c | 6 pthread_mutex_t a, b, c; in main()
|
D | ABCABC.c | 6 pthread_mutex_t a, b, c; in main()
|
D | ABBCCDDA.c | 6 pthread_mutex_t a, b, c, d; in main()
|
D | ABCDBCDA.c | 6 pthread_mutex_t a, b, c, d; in main()
|
D | ABCDBDDA.c | 6 pthread_mutex_t a, b, c, d; in main()
|
/linux-4.4.14/tools/lib/lockdep/uinclude/linux/ |
D | spinlock.h | 7 #define arch_spinlock_t pthread_mutex_t
|
/linux-4.4.14/tools/perf/ui/ |
D | ui.h | 8 extern pthread_mutex_t ui__lock;
|
D | setup.c | 8 pthread_mutex_t ui__lock = PTHREAD_MUTEX_INITIALIZER;
|
/linux-4.4.14/tools/testing/selftests/vm/ |
D | userfaultfd.c | 87 ((pthread_mutex_t *) ((___area) + (___nr)*page_size)) 95 sizeof(pthread_mutex_t) + \ 295 pthread_mutex_t uffd_read_mutex = PTHREAD_MUTEX_INITIALIZER; 465 *area_mutex(area_src, nr) = (pthread_mutex_t) in userfaultfd_stress()
|
/linux-4.4.14/tools/virtio/virtio-trace/ |
D | trace-agent.h | 48 extern pthread_mutex_t mutex_notify;
|
D | trace-agent.c | 28 pthread_mutex_t mutex_notify = PTHREAD_MUTEX_INITIALIZER;
|
/linux-4.4.14/tools/thermal/tmon/ |
D | tmon.h | 44 extern pthread_mutex_t input_lock;
|
D | tmon.c | 57 pthread_mutex_t input_lock;
|
/linux-4.4.14/tools/perf/bench/ |
D | numa.c | 59 pthread_mutex_t *process_lock; 129 pthread_mutex_t startup_mutex; 132 pthread_mutex_t startup_done_mutex; 134 pthread_mutex_t start_work_mutex; 137 pthread_mutex_t stop_work_mutex; 419 static void init_global_mutex(pthread_mutex_t *mutex) in init_global_mutex() 1225 pthread_mutex_t process_lock; in worker_process()
|
D | futex-wake.c | 35 static pthread_mutex_t thread_lock;
|
D | futex-requeue.c | 34 static pthread_mutex_t thread_lock;
|
D | futex-lock-pi.c | 33 static pthread_mutex_t thread_lock;
|
D | futex-hash.c | 32 static pthread_mutex_t thread_lock;
|
D | futex-wake-parallel.c | 37 static pthread_mutex_t thread_lock;
|
/linux-4.4.14/tools/perf/util/ |
D | annotate.h | 131 pthread_mutex_t lock;
|
D | dso.h | 135 pthread_mutex_t lock;
|
D | hist.h | 72 pthread_mutex_t lock;
|
D | dso.c | 305 static pthread_mutex_t dso__data_open_lock = PTHREAD_MUTEX_INITIALIZER;
|
/linux-4.4.14/Documentation/locking/ |
D | rt-mutex.txt | 5 which enable pthread_mutex_t priority inheritance attributes
|
/linux-4.4.14/Documentation/ |
D | robust-futexes.txt | 27 process exits prematurely while holding a pthread_mutex_t lock that is 29 pthread_mutex_t, or yum is kill -9-ed), then waiters for that lock need
|
/linux-4.4.14/tools/perf/ |
D | builtin-sched.c | 132 pthread_mutex_t start_work_mutex; 133 pthread_mutex_t work_done_wait_mutex;
|
/linux-4.4.14/tools/testing/selftests/seccomp/ |
D | seccomp_bpf.c | 1611 pthread_mutex_t *mutex; 1623 pthread_mutex_t mutex; in FIXTURE_DATA()
|