Blame conform/data/sched.h-data

Packit 6c4009
#if !defined ISO && !defined ISO99 && !defined ISO11 && !defined XPG4 && !defined XPG42
Packit 6c4009
# if defined POSIX || defined UNIX98
Packit 6c4009
#  include "time.h-data"
Packit 6c4009
# else
Packit 6c4009
allow-header time.h
Packit 6c4009
# endif
Packit 6c4009
Packit 6c4009
type {struct sched_param}
Packit 6c4009
element {struct sched_param} int sched_priority
Packit 6c4009
# if !defined POSIX && !defined UNIX98
Packit 6c4009
optional-element {struct sched_param} int sched_ss_low_priority
Packit 6c4009
optional-element {struct sched_param} {struct timespec} sched_ss_repl_period
Packit 6c4009
optional-element {struct sched_param} {struct timespec} sched_ss_init_budget
Packit 6c4009
optional-element {struct sched_param} int sched_ss_max_repl
Packit 6c4009
# endif
Packit 6c4009
Packit 6c4009
# if defined XOPEN2K8 || defined POSIX2008
Packit 6c4009
type pid_t
Packit 6c4009
type time_t
Packit 6c4009
type {struct timespec}
Packit 6c4009
# endif
Packit 6c4009
Packit 6c4009
constant SCHED_FIFO
Packit 6c4009
constant SCHED_RR
Packit 6c4009
# if !defined POSIX && !defined UNIX98
Packit 6c4009
optional-constant SCHED_SPORADIC
Packit 6c4009
# endif
Packit 6c4009
constant SCHED_OTHER
Packit 6c4009
Packit 6c4009
function int sched_get_priority_max (int)
Packit 6c4009
function int sched_get_priority_min (int)
Packit 6c4009
function int sched_getparam (pid_t, struct sched_param*)
Packit 6c4009
function int sched_getscheduler (pid_t)
Packit 6c4009
function int sched_rr_get_interval (pid_t, struct timespec*)
Packit 6c4009
function int sched_setparam (pid_t, const struct sched_param*)
Packit 6c4009
function int sched_setscheduler (pid_t, int, const struct sched_param*)
Packit 6c4009
function int sched_yield (void)
Packit 6c4009
Packit 6c4009
allow sched_*
Packit 6c4009
allow SCHED_*
Packit 6c4009
allow *_t
Packit 6c4009
#endif