// PID: 730677144 // I pledge the COMP 211 honor code. #include "schedule.h" #include <stdio.h> #include <stdlib.h> void run_to_completion(task_struct* task) { // TODO: } void run_with_quantum(task_struct* task, unsigned int quantum) { // TODO: } void fcfs() { // TODO: } void priority_queue(unsigned int quantum) { // TODO: } void round_robin(unsigned int quantum) { // TODO: }