Skip to content

Latest commit

 

History

History
20 lines (13 loc) · 692 Bytes

README.md

File metadata and controls

20 lines (13 loc) · 692 Bytes

OS

Operating System Algorithms Demo implemented in C

This Repository contains some Scheduling Algorithms used by different operating systems implemented in C. The programs are just for demo purpose and can't be really implemented in the OS.

Scheduling Algorithms Includes:

  1. FCFS: First Come First Serve
  2. SJF: Shortest Job First
  3. RR: Round Robin
  4. MFQS: Multilevel Feedback Queue Scheduling

Other Algorithms:

  1. Bankers Algorithm to find the safe sequence of the given processes
  2. Bankers Algorithm to check if the request for resources by a given process is valid or not.

Each Program takes input from the corresponding test files present in the folder.