chiark / gitweb /
eglibc (2.11.3-4+deb6u3) squeeze-lts; urgency=medium
[eglibc.git] / conform / data / sched.h-data
1 #ifndef ISO
2 type {struct sched_param}
3 element {struct sched_param} int sched_priority
4 optional-element {struct sched_param} int sched_ss_low_priority
5 optional-element {struct sched_param} {struct timespec} sched_ss_repl_period
6 optional-element {struct sched_param} {struct timespec} sched_ss_init_budget
7 optional-element {struct sched_param} int sched_ss_max_repl
8
9 constant SCHED_FIFO
10 constant SCHED_RR
11 optional-constant SCHED_SPORADIC
12 constant SCHED_OTHER
13
14 function int sched_get_priority_max (int)
15 function int sched_get_priority_min (int)
16 function int sched_getparam (pid_t, struct sched_param*)
17 function int sched_getscheduler (pid_t)
18 function int sched_rr_get_interval (pid_t, struct timespec*)
19 function int sched_setparam (pid_t, const struct sched_param*)
20 function int sched_setscheduler (pid_t, int, const struct sched_param*)
21 function int sched_yield (void)
22
23 allow-header time.h
24
25 allow sched_*
26 allow SCHED_*
27 allow *_t
28 #endif