mirror of
https://github.com/Comp211-SP24/lab-06-Rushilwiz.git
synced 2025-04-03 20:00:18 -04:00
working
This commit is contained in:
parent
e00d6cab27
commit
834d2f876b
18
schedule.c
18
schedule.c
|
@ -44,20 +44,18 @@ void priority_queue(unsigned int quantum) {
|
|||
if (task->remaining_cycles != 0) {
|
||||
append_task(task->pid, task->priority, task->remaining_cycles);
|
||||
}
|
||||
|
||||
if (size() > 1)
|
||||
min_heapify();
|
||||
}
|
||||
}
|
||||
|
||||
void round_robin(unsigned int quantum) {
|
||||
while (size() > 0) {
|
||||
for (unsigned int i = 0; i < size(); i++) {
|
||||
task_struct* task = get_task(i % size());
|
||||
run_with_quantum(task, quantum);
|
||||
if (task->remaining_cycles == 0) {
|
||||
remove_task(task->pid);
|
||||
}
|
||||
int i = 0;
|
||||
while (size() > 0)
|
||||
{
|
||||
task_struct *task = get_task(i % size());
|
||||
run_with_quantum(task, quantum);
|
||||
if (task->remaining_cycles == 0) {
|
||||
remove_task(task->pid);
|
||||
}
|
||||
i++;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue
Block a user