Searched refs:posix_to_zephyr_priority (Results 1 – 4 of 4) sorted by relevance
/Zephyr-latest/lib/posix/options/ |
D | posix_internal.h | 112 int posix_to_zephyr_priority(int priority, int policy);
|
D | pthread.c | 270 int posix_to_zephyr_priority(int priority, int policy) in posix_to_zephyr_priority() function 662 posix_to_zephyr_priority(t->attr.priority, t->attr.schedpolicy), 0, K_NO_WAIT); in pthread_create() 876 new_prio = posix_to_zephyr_priority(param->sched_priority, policy); in pthread_setschedparam() 917 new_prio = posix_to_zephyr_priority(prio, policy); in pthread_setschedprio()
|
/Zephyr-latest/tests/posix/common/src/ |
D | pthread.c | 230 int posix_to_zephyr_priority(int priority, int policy); 244 zassert_equal(z_prio, posix_to_zephyr_priority(p_prio, SCHED_FIFO)); in ZTEST() 257 zassert_equal(z_prio, posix_to_zephyr_priority(p_prio, SCHED_RR)); in ZTEST()
|
/Zephyr-latest/samples/posix/philosophers/src/ |
D | main.c | 100 prio = posix_to_zephyr_priority(param.sched_priority, policy); in print_phil_state()
|