pthread_spin_lock, pthread_spin_trylock - lock a spin lock object (ADVANCED REALTIME THREADS)
#include <pthread.h>
int pthread_spin_lock(pthread_spinlock_t *lock);
int pthread_spin_trylock(pthread_spinlock_t *lock);
The pthread_spin_lock() function shall lock the spin lock referenced by lock. The calling thread shall acquire the lock if it is not held by another thread. Otherwise, the thread shall spin (that is, shall not return from the pthread_spin_lock() call) until the lock becomes available. The results are undefined if the calling thread holds the lock at the time the call is made. The pthread_spin_trylock() function shall lock the spin lock referenced by lock if it is not held by any thread. Otherwise, the function shall fail.
The results are undefined if any of these functions is called with an uninitialized spin lock.
Upon successful completion, these functions shall return zero; otherwise, an error number shall be returned to indicate the error.
These functions may fail if:
The pthread_spin_lock() function may fail if:
The pthread_spin_trylock() function shall fail if:
These functions shall not return an error code of [EINTR].
The following sections are informative.
Applications using this function may be subject to priority inversion, as discussed in the Base Definitions volume of IEEE Std 1003.1-2001, Section 3.285, Priority Inversion.
The pthread_spin_lock() and pthread_spin_trylock() functions are part of the Spin Locks option and need not be provided on all implementations.
pthread_spin_destroy() , pthread_spin_unlock() , the Base Definitions volume of IEEE Std 1003.1-2001, <pthread.h>
Закладки на сайте Проследить за страницей |
Created 1996-2024 by Maxim Chirkov Добавить, Поддержать, Вебмастеру |