mirror of
https://github.com/Comp211-SP24/lab-06-Rushilwiz.git
synced 2025-04-03 20:00:18 -04:00
fixed half of pq
This commit is contained in:
parent
659e46ef30
commit
55bea7a247
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -2,6 +2,7 @@
|
||||||
*.o
|
*.o
|
||||||
*.out
|
*.out
|
||||||
main
|
main
|
||||||
|
out.txt
|
||||||
|
|
||||||
# macOS
|
# macOS
|
||||||
.DS_Store
|
.DS_Store
|
||||||
|
|
|
@ -38,7 +38,9 @@ void fcfs() {
|
||||||
|
|
||||||
void priority_queue(unsigned int quantum) {
|
void priority_queue(unsigned int quantum) {
|
||||||
while(get_task(0) != NULL) {
|
while(get_task(0) != NULL) {
|
||||||
min_heapify();
|
if (size() > 1)
|
||||||
|
min_heapify();
|
||||||
|
|
||||||
task_struct *task = remove_task(get_task(0)->pid);
|
task_struct *task = remove_task(get_task(0)->pid);
|
||||||
|
|
||||||
run_with_quantum(task, quantum);
|
run_with_quantum(task, quantum);
|
||||||
|
|
Loading…
Reference in New Issue
Block a user