-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
21 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,23 @@ | ||
# OS-Scheduler | ||
Operating systems scheduling algorithms visualization. | ||
it is an OS scheduler using different scheduling algorithms | ||
This module is responsible for generating a schedule for the current processes in the system to specify the | ||
CPU usage by these processes. | ||
implemented 4 scheduling algorithms: | ||
1. Non-Preemptive Highest Priority First.(HPF) | ||
2. First Come First Served. (FCFS) | ||
3. Round Robin with fixed time quantum.(RR) | ||
4. Preemptive Shortest Remaining Time Next.(SRTN) | ||
|
||
Library used for GUI : Tkinter | ||
Library used for plots : matplotlib | ||
Startup window for selecting (Input file) and (Selecting an algorithm to draw its corresponding scheduling | ||
![Startup window for selecting (Input file) and (Selecting an algorithm to draw its corresponding scheduling](docs/front.png) | ||
1. First come first served | ||
![Startup window for selecting (Input file) and (Selecting an algorithm to draw its corresponding scheduling](docs/FCFS.png) | ||
2. High priority first | ||
![Startup window for selecting (Input file) and (Selecting an algorithm to draw its corresponding scheduling](docs/HPF.png) | ||
3. Round Robin | ||
![Startup window for selecting (Input file) and (Selecting an algorithm to draw its corresponding scheduling](docs/RR.png) | ||
4. Short remaining time next | ||
![Startup window for selecting (Input file) and (Selecting an algorithm to draw its corresponding scheduling](docs/SRTN.png) |