//! Header: `sys/sched.h`
//!
//! QuRT scheduling parameters and functions.
use crate*;
// Scheduling policies (from QuRT sys/sched.h)
pub const SCHED_FIFO: c_int = 0;
pub const SCHED_RR: c_int = 1;
pub const SCHED_SPORADIC: c_int = 2;
pub const SCHED_OTHER: c_int = 3;
s!
extern "C"