// PID: 9DigitPidNoSpacesOrDashes // I pledge the COMP 211 honor code. #include "schedule.h" #include #include 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: }