Lines Matching refs:prio
232 int create_thread(void*(*func)(void*), void *arg, int prio, int policy);
234 /* create_fifo_thread: spawn a SCHED_FIFO thread with priority prio running
238 * prio: 1-100, 100 being highest priority
240 int create_fifo_thread(void*(*func)(void*), void *arg, int prio);
242 /* create_rr_thread: spawn a SCHED_RR thread with priority prio running
246 * prio: 1-100, 100 being highest priority
248 int create_rr_thread(void*(*func)(void*), void *arg, int prio);
258 int set_thread_priority(pthread_t pthread, int prio);
262 * prio: 1-99
264 int set_priority(int prio);