fixed half of pq

This commit is contained in:
Rushil Umaretiya 2024-04-18 02:56:34 -04:00
parent 659e46ef30
commit 55bea7a247
No known key found for this signature in database
GPG Key ID: 4E8FAF9C926AF959
2 changed files with 4 additions and 1 deletions

1
.gitignore vendored
View File

@ -2,6 +2,7 @@
*.o
*.out
main
out.txt
# macOS
.DS_Store

View File

@ -38,7 +38,9 @@ void fcfs() {
void priority_queue(unsigned int quantum) {
while(get_task(0) != NULL) {
min_heapify();
if (size() > 1)
min_heapify();
task_struct *task = remove_task(get_task(0)->pid);
run_with_quantum(task, quantum);