fixed extra print

This commit is contained in:
Rushil Umaretiya 2024-04-18 02:31:22 -04:00
parent d62a046f5c
commit a3fc714ffc
No known key found for this signature in database
GPG Key ID: 4E8FAF9C926AF959

View File

@ -21,8 +21,6 @@ void run_with_quantum(task_struct* task, unsigned int quantum) {
}
void fcfs() {
printf("Running FCFS\n");
while (get_task(0) != NULL) {
run_to_completion(remove_task(get_task(0)->pid));
}