diff --git a/task.c b/task.c index b6f9377..d1482bc 100644 --- a/task.c +++ b/task.c @@ -201,7 +201,8 @@ void heapify(int i) { float next_ratio = (float)next->priority / (float)next->remaining_cycles; - if (curr_ratio > next_ratio) { + if (curr_ratio > next_ratio || + (curr_ratio == next_ratio && curr->priority > next->priority)) { swap(curr->pid, next->pid); k = j; } else {