Lines Matching refs:schedp
102 struct sched_param schedp; in func_nonrt() local
117 pthread_getschedparam(pthr->pthread, &policy, &schedp); in func_nonrt()
124 pthr->priority, policy, schedp.sched_priority); in func_nonrt()
128 sched_getparam(tid, &schedp); in func_nonrt()
132 policy, schedp.sched_priority); in func_nonrt()
151 struct sched_param schedp; in func_rt() local
166 pthread_getschedparam(pthr->pthread, &policy, &schedp); in func_rt()
174 pthr->priority, policy, schedp.sched_priority); in func_rt()
183 sched_getparam(tid, &schedp); in func_rt()
188 schedp.sched_priority); in func_rt()
207 struct sched_param schedp; in func_noise() local
222 pthread_getschedparam(pthr->pthread, &policy, &schedp); in func_noise()
230 sched_getparam(tid, &schedp); in func_noise()
235 schedp.sched_priority); in func_noise()
251 struct sched_param schedp; in startThread() local
261 memset(&schedp, 0, sizeof(schedp)); in startThread()
262 schedp.sched_priority = thrd->priority; in startThread()
273 if (pthread_attr_setschedparam(&(thrd->attr), &schedp) != 0) { in startThread()
276 if (pthread_attr_getschedparam(&(thrd->attr), &schedp) != 0) { in startThread()
279 printf("Priority in attribs is %d\n", schedp.sched_priority); in startThread()