POSIX Thread Priority Protection option.
More...
|
| #define | PTHREAD_PRIO_PROTECT 2 |
| | Mutex protocol: owner runs at ceiling priority while holding the mutex.
|
| |
|
| int | pthread_mutex_getprioceiling (const pthread_mutex_t *ZRESTRICT mutex, int *ZRESTRICT prioceiling) |
| | Get the priority ceiling of a mutex.
|
| |
| int | pthread_mutex_setprioceiling (pthread_mutex_t *ZRESTRICT mutex, int prioceiling, int *ZRESTRICT old_ceiling) |
| | Set the priority ceiling of a mutex.
|
| |
| int | pthread_mutexattr_getprioceiling (const pthread_mutexattr_t *ZRESTRICT attr, int *ZRESTRICT prioceiling) |
| | Get the priority ceiling attribute of a mutex attributes object.
|
| |
| int | pthread_mutexattr_setprioceiling (pthread_mutexattr_t *attr, int prioceiling) |
| | Set the priority ceiling attribute of a mutex attributes object.
|
| |
POSIX Thread Priority Protection option.
◆ PTHREAD_PRIO_PROTECT
| #define PTHREAD_PRIO_PROTECT 2 |
Mutex protocol: owner runs at ceiling priority while holding the mutex.
Definition at line 82 of file pthread.h.
◆ pthread_mutex_getprioceiling()
| int pthread_mutex_getprioceiling |
( |
const pthread_mutex_t *ZRESTRICT |
mutex, |
|
|
int *ZRESTRICT |
prioceiling |
|
) |
| |
◆ pthread_mutex_setprioceiling()
| int pthread_mutex_setprioceiling |
( |
pthread_mutex_t *ZRESTRICT |
mutex, |
|
|
int |
prioceiling, |
|
|
int *ZRESTRICT |
old_ceiling |
|
) |
| |
◆ pthread_mutexattr_getprioceiling()
| int pthread_mutexattr_getprioceiling |
( |
const pthread_mutexattr_t *ZRESTRICT |
attr, |
|
|
int *ZRESTRICT |
prioceiling |
|
) |
| |
◆ pthread_mutexattr_setprioceiling()
| int pthread_mutexattr_setprioceiling |
( |
pthread_mutexattr_t * |
attr, |
|
|
int |
prioceiling |
|
) |
| |