Skip to content

malmahdawi/CPU-schedualling

Folders and files

NameName
Last commit message
Last commit date

Latest commit

author
Mohammed
Sep 13, 2020
260477c · Sep 13, 2020

History

7 Commits
Sep 12, 2020
Sep 13, 2020
Sep 13, 2020
Sep 13, 2020
Sep 13, 2020
Sep 13, 2020
Sep 13, 2020
Sep 13, 2020
Sep 13, 2020
Sep 13, 2020
Sep 13, 2020
Sep 13, 2020
Sep 12, 2020
Sep 12, 2020

Repository files navigation

CPU Scheduling Program

To compile the program

make
  • make sure that the processes file is placed in Sched directory and called processes.txt
  • the arrangement of processes.txt file is <pid, burst time, arrival time>

To change the processes file name

  • Open app.cpp
  • Navigate to readFile(vector<process *> *processes) function
  • Change "processes.txt" in std::ifstream infile("processes.txt"); to the file name

To change time quantum and context switch values

  • Open app.cpp
  • Navigate to main()
  • Change time quantum and context switch variables

Run All algorithms

  • pass -all argument as the box below show
    ./app -all

Run FCFS algorithm

  • pass -fcfs argument as the box below show
    ./app -fcfs

Run SJF algorithm

  • pass -SJF argument as the box below show
    ./app -sjf

Run RR algorithm

  • pass -rr argument as the box below show
    ./app -rr

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published