mirror of
https://github.com/Comp211-SP24/lab-06-Rushilwiz.git
synced 2025-04-03 03:40:18 -04:00
trying alternative implementation
This commit is contained in:
parent
834d2f876b
commit
61ab29b07c
26
schedule.c
26
schedule.c
|
@ -1,10 +1,12 @@
|
|||
// PID: 730677144
|
||||
// I pledge the COMP 211 honor code.
|
||||
|
||||
#include "schedule.h"
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
#include "schedule.h"
|
||||
#include "task.h"
|
||||
|
||||
void run_to_completion(task_struct* task) {
|
||||
printf("Task %d ran for %d cycles.\n", task->pid, task->remaining_cycles);
|
||||
task->remaining_cycles = 0;
|
||||
|
@ -41,21 +43,29 @@ void priority_queue(unsigned int quantum) {
|
|||
|
||||
task_struct* task = remove_task(get_task(0)->pid);
|
||||
run_with_quantum(task, quantum);
|
||||
|
||||
if (task->remaining_cycles != 0) {
|
||||
append_task(task->pid, task->priority, task->remaining_cycles);
|
||||
} else {
|
||||
free(task);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
void round_robin(unsigned int quantum) {
|
||||
int i = 0;
|
||||
while (size() > 0)
|
||||
{
|
||||
task_struct *task = get_task(i % size());
|
||||
while (head != NULL) {
|
||||
task_struct* task = head;
|
||||
head = head->next;
|
||||
run_with_quantum(task, quantum);
|
||||
if (task->remaining_cycles == 0) {
|
||||
remove_task(task->pid);
|
||||
|
||||
if (task->remaining_cycles > 0) {
|
||||
append_task(task->pid, task->priority, task->remaining_cycles);
|
||||
} else {
|
||||
free(task);
|
||||
}
|
||||
|
||||
if (head == NULL) {
|
||||
tail = NULL;
|
||||
}
|
||||
i++;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue
Block a user