/* FIFO common definitions and utility functions. */ #ifndef __UNC_SCHED_FIFO_H__ #define __UNC_SCHED_FIFO_H__ #include int fifo_higher_prio(struct task_struct* first, struct task_struct* second); int fifo_ready_order(struct list_head* a, struct list_head* b); void fifo_domain_init(rt_domain_t* fifo, check_resched_needed_t resched); #endif