Searched refs:pthread_mutex_t (Results 1 – 27 of 27) sorted by relevance
/linux-4.1.27/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.1.27/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.1.27/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.1.27/tools/lib/lockdep/tests/ |
D | unlock_balance.c | 5 pthread_mutex_t a; in main()
|
D | AA.c | 5 pthread_mutex_t a, b; in main()
|
D | ABBA.c | 6 pthread_mutex_t a, b; in main()
|
D | ABCABC.c | 6 pthread_mutex_t a, b, c; in main()
|
D | ABBCCA.c | 6 pthread_mutex_t a, b, c; in main()
|
D | ABCDBDDA.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 | ABBCCDDA.c | 6 pthread_mutex_t a, b, c, d; in main()
|
/linux-4.1.27/tools/lib/lockdep/uinclude/linux/ |
D | spinlock.h | 7 #define arch_spinlock_t pthread_mutex_t
|
/linux-4.1.27/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.1.27/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.1.27/tools/thermal/tmon/ |
D | tmon.h | 44 extern pthread_mutex_t input_lock;
|
D | tmon.c | 57 pthread_mutex_t input_lock;
|
/linux-4.1.27/tools/perf/bench/ |
D | numa.c | 54 pthread_mutex_t *process_lock; 124 pthread_mutex_t startup_mutex; 127 pthread_mutex_t startup_done_mutex; 129 pthread_mutex_t start_work_mutex; 132 pthread_mutex_t stop_work_mutex; 414 static void init_global_mutex(pthread_mutex_t *mutex) in init_global_mutex() 1212 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-hash.c | 32 static pthread_mutex_t thread_lock;
|
/linux-4.1.27/tools/perf/util/ |
D | annotate.h | 115 pthread_mutex_t lock;
|
D | hist.h | 67 pthread_mutex_t lock;
|
/linux-4.1.27/Documentation/locking/ |
D | rt-mutex.txt | 5 which enable pthread_mutex_t priority inheritance attributes
|
/linux-4.1.27/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.1.27/tools/perf/ |
D | builtin-sched.c | 131 pthread_mutex_t start_work_mutex; 132 pthread_mutex_t work_done_wait_mutex;
|