在 xv6 中实现优先级调度算法?
但我无法理解如何处理这个调度。
我可以使用此代码设置优先级。
int
set_priority(int pid,int priority)
{
struct proc *p;
//acquire(&ptable.lock);
//cprintf("Set Priority - %d \n",priority);
for(p = ptable.proc; p < &ptable.proc[NPROC]; p++){
if((p->pid == pid) || (p->parent->pid == pid)){
p->priority = priority;
return 0;
}
}
//release(&ptable.lock);
return -1;
}
最佳答案
首先,您需要在 struct proc
中添加一个字段(priority)。
struct proc{
//
....
int priority; // priority of the process
}
其次,您现在可以在
proc.c
中编写自己的调度程序。void scheduler(void){
for(;;){
//add your own priority scheduler here.
}
}
关于c - 如何在 xv6 中实现优先级调度程序?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/28972542/