25using std::atomic_flag;
int pthread_spin_unlock(pthread_spinlock_t *lock)
Releases a spinlock.
int pthread_spin_lock(pthread_spinlock_t *lock)
Lock a spinlock.
int pthread_spin_destroy(pthread_spinlock_t *lock)
Destroys a spinlock.
int pthread_spin_init(pthread_spinlock_t *lock, int pshared)
Initializes a spinlock.
int pthread_spin_trylock(pthread_spinlock_t *lock)
Tries to lock a spinlock, returns immediately if already locked.
atomic_flag flag
Current lock state.