linux 任务优先级简单记录
优先级
进程PCB描述符struct task_struct 数据结构中有3个成员描述进程的优先级。
struct task_struct {
....
int prio;
int static_prio;
int normal_prio;
unsigned int rt_priority;
...
};
static_prio是静态优先级,在进程启动时分配。内核不储存nace值,取而代之的是static_prio。内核中有宏 NICE_TO_PRIO()实现由NICE值转换成static_prio。它之所以被称为静态优先级是因为它不会随着时间而改变,用户可以通过nice或sched_setscheduler等系统调用来修改该值。
#define MAX_NICE 19
#define MIN_NICE -20
#define NICE_WIDTH (MAX_NICE - MIN_NICE + 1)
#define MAX_RT_PRIO 100
#define DEFAULT_PRIO (MAX_RT_PRIO + NICE_WIDTH/2)
#define NICE_TO_PRIO(nice) ((nice) +DEFAULT_PRIO)
normal_prio是基于static_prio和调度策略计算出来的优先级,在创建进程时会继承父进程的normal_prio。对于普通进程来说,normal_prio等同于static_prio,对于实时进程,会根据rt_priority重新计算normal_prio。