mirror of
https://github.com/Comp211-SP24/lab-06-Rushilwiz.git
synced 2025-04-03 20:00:18 -04:00
fixed segfault
This commit is contained in:
parent
aca8171c39
commit
c42a9b4418
|
@ -21,8 +21,10 @@ 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(0));
|
||||
run_to_completion(remove_task(get_task(0)->pid));
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -33,7 +35,7 @@ void priority_queue(unsigned int quantum) {
|
|||
task_struct* task = get_task(0);
|
||||
run_with_quantum(task, quantum);
|
||||
if (task->remaining_cycles > 0) {
|
||||
remove_task(0);
|
||||
remove_task(task->pid);
|
||||
}
|
||||
|
||||
min_heapify();
|
||||
|
|
Loading…
Reference in New Issue
Block a user