Skip to content

Nader-Youhanna/Operating_System

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

16 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

An Operating System in C.

A CPU scheduler determines an order for the execution of its scheduled processes.

The OS implements the following scheduling algorithms:

  • First Come First Serve (FCFS)
  • Shortest Job First (SJF)
  • Preemptive Highest Priority First (HPF)
  • Shortest Remaining Time Next (SRTN)
  • Round Robin (RR)

The OS also allocates memory to processes according to these algorithms:
  • First Fit
  • Next Fit
  • Best Fit
  • Buddy System Allocation

About

An Operating System in C

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C 98.6%
  • Other 1.4%