Symbol: pthread_spinlock_t
headers/posix/pthread.h
188
extern int pthread_spin_init(pthread_spinlock_t* spinlock, int pshared);
headers/posix/pthread.h
189
extern int pthread_spin_destroy(pthread_spinlock_t* spinlock);
headers/posix/pthread.h
190
extern int pthread_spin_lock(pthread_spinlock_t* spinlock);
headers/posix/pthread.h
191
extern int pthread_spin_trylock(pthread_spinlock_t* spinlock);
headers/posix/pthread.h
192
extern int pthread_spin_unlock(pthread_spinlock_t* spinlock);
src/libs/posix_error_mapper/pthread_spinlock.cpp
12
(pthread_spinlock_t* lock, int pshared),
src/libs/posix_error_mapper/pthread_spinlock.cpp
17
WRAPPER_FUNCTION(int, pthread_spin_destroy, (pthread_spinlock_t* lock),
src/libs/posix_error_mapper/pthread_spinlock.cpp
22
WRAPPER_FUNCTION(int, pthread_spin_lock, (pthread_spinlock_t* lock),
src/libs/posix_error_mapper/pthread_spinlock.cpp
27
WRAPPER_FUNCTION(int, pthread_spin_trylock, (pthread_spinlock_t* lock),
src/libs/posix_error_mapper/pthread_spinlock.cpp
32
WRAPPER_FUNCTION(int, pthread_spin_unlock, (pthread_spinlock_t* lock),
src/system/libroot/posix/pthread/pthread_spinlock.cpp
19
pthread_spin_init(pthread_spinlock_t* lock, int pshared)
src/system/libroot/posix/pthread/pthread_spinlock.cpp
31
pthread_spin_destroy(pthread_spinlock_t* lock)
src/system/libroot/posix/pthread/pthread_spinlock.cpp
38
pthread_spin_lock(pthread_spinlock_t* lock)
src/system/libroot/posix/pthread/pthread_spinlock.cpp
50
pthread_spin_trylock(pthread_spinlock_t* lock)
src/system/libroot/posix/pthread/pthread_spinlock.cpp
59
pthread_spin_unlock(pthread_spinlock_t* lock)