[go: nahoru, domu]

Skip to content

AhmedKhaled590/OS_Project

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

31 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Table of Contents

About The Project

A CPU scheduler determines an order for the execution of its scheduled processes; it decides which process will run according to a certain data structure that keeps track of the processes in the system and their status.
A process, upon creation, has one of the three states: Running, Ready, Blocked (doing I/O, using other resources than CPU or waiting on unavailable resource).
OS for 1 CPU and fixed memory size 1024 byte

System Diagram

Algorithms Implemented for Scheduling:

  • First Come First Serve
  • Shortest Job First
  • Preemtive Highest Priority First
  • Shortest Remaining Time Next
  • Round Robin

Algorithms Implemented for Memory Allocation:

  • First Fit
  • Next Fit
  • Best Fit
  • Buddy System Allocation

Assumptions :

  • No process can arrive at 0 (this causes inconsistency as the program requires time to initialize)
  • In phase 2 RR, If a process cannot be allocated (insufficient memory) it proceeds to the next process and if it is at the end it wraps around.
  • In phase 2, If 2 or more processes have the same everything except memory size it does NOT get sorted by the memory size. We just get the same order of the process generator.
  • The compiled programs is .out (not .o). it matters as we are calling them by name in the code.
    You can use this snippet for compiling the program.
    PS: the -lm argument while compiling scheduler is necessary.
gcc process_generator.c -o process_generator.out
gcc clk.c -o clk.out
gcc scheduler.c -lm -o scheduler.out
gcc process.c -o process.out 
  • Faster is
make run

Running The Scheduler:

  • See the scheduler results on this testcase sample

testcase

  • Scheduling Algorithms with the First Fit Memory Allocation here
  • Scheduling Algorithms with the Next Fit Memory Allocation here

Contributing

Contributions are what make the open source community such an amazing place to be learn, inspire, and create. Any contributions you make are greatly appreciated.

  1. Fork the Project
  2. Create your Feature Branch (git checkout -b AmazingFeature-Feat)
  3. Commit your Changes (git commit -m 'Add some AmazingFeature')
  4. Push to the Branch (git push origin AmazingFeature-Feat)
  5. Open a Pull Request

Notes

  1. headers.h contains clk functions, it should be included anywhere the clock functions are used.
  2. To get time call: getClk();
  3. If you added a file to your project add it to the build section in the Makefile
  4. Always start the line with a tab in Makefile, it is its syntax

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 4

  •  
  •  
  •  
  •