本文主要是介绍Linux Kernel调度管理之sched_rt_entity,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
sched_rt_entity是实时进程用于调度的实体描述:
struct sched_rt_entity { struct list_head run_list; unsigned long timeout; unsigned long watchdog_stamp; unsigned int time_slice; unsigned short on_rq; unsigned short on_list; struct sched_rt_entity *back; #ifdef CONFIG_RT_GROUP_SCHED struct sched_rt_entity *parent; /* rq on which this entity is (to be) queued: */ struct rt_rq *rt_rq; /* rq "owned" by this entity/group: */ struct rt_rq *my_q; #endif };
实时调度实体也是作为进程描述符下的一个成员存在。
这篇关于Linux Kernel调度管理之sched_rt_entity的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!