mirror of
https://github.com/zach-sb/COMP2240-Assignment3.git
synced 2025-11-09 02:27:37 +11:00
14 lines
709 B
Plaintext
14 lines
709 B
Plaintext
FIFO - Fixed-Local Replacement:
|
|
PID Process Name Turnaround Time # Faults Fault Times
|
|
1 Process1.txt 38 5 {0, 7, 16, 23, 30}
|
|
2 Process2.txt 39 5 {0, 8, 17, 24, 31}
|
|
3 Process3.txt 18 1 {0}
|
|
4 Process4.txt 37 4 {0, 12, 19, 28}
|
|
|
|
|
|
FIFO - Variable-Global Replacement:
|
|
PID Process Name Turnaround Time # Faults Fault Times
|
|
1 Process1.txt 38 5 {0, 7, 16, 23, 30}
|
|
2 Process2.txt 39 5 {0, 8, 17, 24, 31}
|
|
3 Process3.txt 18 1 {0}
|
|
4 Process4.txt 37 4 {0, 12, 19, 28} |