HomeSort by: relevance | last modified time | path
    Searched refs:pthread_spinlock_t (Results 1 - 7 of 7) sorted by relevancy

  /src/lib/libpthread/
pthread_spin.c 56 pthread_spin_init(pthread_spinlock_t *lock, int pshared)
77 pthread_spin_destroy(pthread_spinlock_t *lock)
92 pthread_spin_lock(pthread_spinlock_t *lock)
108 pthread_spin_trylock(pthread_spinlock_t *lock)
122 pthread_spin_unlock(pthread_spinlock_t *lock)
pthread.h 186 int pthread_spin_init(pthread_spinlock_t *, int);
187 int pthread_spin_destroy(pthread_spinlock_t *);
188 int pthread_spin_lock(pthread_spinlock_t *);
189 int pthread_spin_trylock(pthread_spinlock_t *);
190 int pthread_spin_unlock(pthread_spinlock_t *);
pthread_types.h 36 * We use the "pthread_spin_t" name internally; "pthread_spinlock_t" is the
83 typedef struct __pthread_spinlock_st pthread_spinlock_t; typedef in typeref:struct:__pthread_spinlock_st
  /src/sys/external/bsd/compiler_rt/dist/lib/tsan/dd/
dd_interceptors.cc 71 INTERCEPTOR(int, pthread_spin_destroy, pthread_spinlock_t *m) {
78 INTERCEPTOR(int, pthread_spin_lock, pthread_spinlock_t *m) {
86 INTERCEPTOR(int, pthread_spin_trylock, pthread_spinlock_t *m) {
94 INTERCEPTOR(int, pthread_spin_unlock, pthread_spinlock_t *m) {
  /src/sys/external/bsd/compiler_rt/dist/lib/tsan/tests/rtl/
tsan_test_util_posix.cc 108 CHECK_EQ(pthread_spin_init((pthread_spinlock_t*)mtx_, 0), 0);
131 CHECK_EQ(pthread_spin_destroy((pthread_spinlock_t*)mtx_), 0);
143 CHECK_EQ(pthread_spin_lock((pthread_spinlock_t*)mtx_), 0);
155 return pthread_spin_trylock((pthread_spinlock_t*)mtx_) == 0;
168 CHECK_EQ(pthread_spin_unlock((pthread_spinlock_t*)mtx_), 0);
  /src/lib/librumpuser/
rumpuser_pth.c 269 pthread_spinlock_t spin;
  /src/lib/libukfs/
ukfs.c 72 pthread_spinlock_t ukfs_spin;
158 pthread_spinlock_t part_lck;

Completed in 14 milliseconds