#include <pthread.h> int pthread_mutexattr_setprioceiling( pthread_mutexattr_t *attr, int prioceiling );
The pthread_mutexattr_setprioceiling
routine is used to set value of the
prioceiling
attribute. This attribute specifies the priority that
is the ceiling for threads obtaining this mutex. Any task obtaining this
mutex may not be of greater priority that the ceiling. If it is of lower
priority, then its priority will be elevated to prioceiling
.
NONE
Copyright © 1988-2008 OAR Corporation