Skip to content

Latest commit

 

History

History
13 lines (12 loc) · 571 Bytes

README.md

File metadata and controls

13 lines (12 loc) · 571 Bytes

CPU Scheduling Simulator in C

This project simulates CPU scheduling using popular algorithms

  1. First-Come-First-Serve (FCFS) Algorithm
  2. Shortest Job Firsst (SJF) Algorhithm
  3. Shortest Remaining Time First (SRTF) Algorithm
  4. Round-Robin (RR) with any chosen quantum time

Upcoming:

  • Dynamic queue mechanism, which allows loading and removing processes at any time.
  • Multi-level Feedback Queue (MLFQ) with 5 levels (somewhat done)
  • Some other scheduling criterias: response time and throughput