Home | History | Annotate | Download | only in gthread

Lines Matching defs:sched

47 #include <sched.h>
138 struct sched_param sched;
140 posix_check_cmd (pthread_getschedparam (pthread_self(), &policy, &sched));
141 priority_normal_value = sched.sched_priority;
345 struct sched_param sched;
346 posix_check_cmd (pthread_attr_getschedparam (&attr, &sched));
347 sched.sched_priority = g_thread_priority_map [priority];
348 posix_check_cmd_prio (pthread_attr_setschedparam (&attr, &sched));
402 struct sched_param sched;
405 &sched));
406 sched.sched_priority = g_thread_priority_map [priority];
408 &sched));