Home
last modified time | relevance | path

Searched refs:_thr_priorities (Results 1 – 3 of 3) sorted by relevance

/freebsd/lib/libthr/thread/
H A Dthr_private.h312 #define THR_MIN_PRIORITY (_thr_priorities[SCHED_OTHER-1].pri_min)
313 #define THR_MAX_PRIORITY (_thr_priorities[SCHED_OTHER-1].pri_max)
314 #define THR_DEF_PRIORITY (_thr_priorities[SCHED_OTHER-1].pri_default)
316 #define THR_MIN_RR_PRIORITY (_thr_priorities[SCHED_RR-1].pri_min)
317 #define THR_MAX_RR_PRIORITY (_thr_priorities[SCHED_RR-1].pri_max)
318 #define THR_DEF_RR_PRIORITY (_thr_priorities[SCHED_RR-1].pri_default)
321 #define THR_MIN_FIFO_PRIORITY (_thr_priorities[SCHED_FIFO_1].pri_min)
322 #define THR_MAX_FIFO_PRIORITY (_thr_priorities[SCHED_FIFO-1].pri_max)
323 #define THR_DEF_FIFO_PRIORITY (_thr_priorities[SCHED_FIFO-1].pri_default)
751 extern struct pthread_prio _thr_priorities[] __hidden;
H A Dthr_attr.c414 if (param->sched_priority < _thr_priorities[policy-1].pri_min || in _thr_attr_setschedparam()
415 param->sched_priority > _thr_priorities[policy-1].pri_max) in _thr_attr_setschedparam()
442 (*attr)->prio = _thr_priorities[policy-1].pri_default; in _thr_attr_setschedpolicy()
H A Dthr_init.c73 struct pthread_prio _thr_priorities[3] = { variable