mirror of
https://github.com/Comp211-SP24/lab-06-Rushilwiz.git
synced 2025-04-03 20:00:18 -04:00
27 lines
421 B
C
27 lines
421 B
C
// PID: 9DigitPidNoSpacesOrDashes
|
|
// 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:
|
|
}
|