Home
last modified time | relevance | path

Searched refs:pthread_mutex_t (Results 1 – 33 of 33) sorted by relevance

/linux-4.4.14/tools/lib/lockdep/
Dpreload.c43 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/
Dmutex.h8 pthread_mutex_t mutex;
61 #define pthread_mutex_t liblockdep_pthread_mutex_t macro
/linux-4.4.14/tools/testing/selftests/timers/
Dthreadtest.c39 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/
Dunlock_balance.c5 pthread_mutex_t a; in main()
DABBA.c6 pthread_mutex_t a, b; in main()
DAA.c5 pthread_mutex_t a, b; in main()
DABBCCA.c6 pthread_mutex_t a, b, c; in main()
DABCABC.c6 pthread_mutex_t a, b, c; in main()
DABBCCDDA.c6 pthread_mutex_t a, b, c, d; in main()
DABCDBCDA.c6 pthread_mutex_t a, b, c, d; in main()
DABCDBDDA.c6 pthread_mutex_t a, b, c, d; in main()
/linux-4.4.14/tools/lib/lockdep/uinclude/linux/
Dspinlock.h7 #define arch_spinlock_t pthread_mutex_t
/linux-4.4.14/tools/perf/ui/
Dui.h8 extern pthread_mutex_t ui__lock;
Dsetup.c8 pthread_mutex_t ui__lock = PTHREAD_MUTEX_INITIALIZER;
/linux-4.4.14/tools/testing/selftests/vm/
Duserfaultfd.c87 ((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/
Dtrace-agent.h48 extern pthread_mutex_t mutex_notify;
Dtrace-agent.c28 pthread_mutex_t mutex_notify = PTHREAD_MUTEX_INITIALIZER;
/linux-4.4.14/tools/thermal/tmon/
Dtmon.h44 extern pthread_mutex_t input_lock;
Dtmon.c57 pthread_mutex_t input_lock;
/linux-4.4.14/tools/perf/bench/
Dnuma.c59 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()
Dfutex-wake.c35 static pthread_mutex_t thread_lock;
Dfutex-requeue.c34 static pthread_mutex_t thread_lock;
Dfutex-lock-pi.c33 static pthread_mutex_t thread_lock;
Dfutex-hash.c32 static pthread_mutex_t thread_lock;
Dfutex-wake-parallel.c37 static pthread_mutex_t thread_lock;
/linux-4.4.14/tools/perf/util/
Dannotate.h131 pthread_mutex_t lock;
Ddso.h135 pthread_mutex_t lock;
Dhist.h72 pthread_mutex_t lock;
Ddso.c305 static pthread_mutex_t dso__data_open_lock = PTHREAD_MUTEX_INITIALIZER;
/linux-4.4.14/Documentation/locking/
Drt-mutex.txt5 which enable pthread_mutex_t priority inheritance attributes
/linux-4.4.14/Documentation/
Drobust-futexes.txt27 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/
Dbuiltin-sched.c132 pthread_mutex_t start_work_mutex;
133 pthread_mutex_t work_done_wait_mutex;
/linux-4.4.14/tools/testing/selftests/seccomp/
Dseccomp_bpf.c1611 pthread_mutex_t *mutex;
1623 pthread_mutex_t mutex; in FIXTURE_DATA()