{"id":18604528,"url":"https://github.com/divshekhar/os_process_schedulers","last_synced_at":"2025-07-10T09:37:12.744Z","repository":{"id":116649316,"uuid":"445985603","full_name":"divshekhar/os_process_schedulers","owner":"divshekhar","description":"Operating System Process Schedulers Solver","archived":false,"fork":false,"pushed_at":"2022-01-26T06:13:04.000Z","size":145,"stargazers_count":5,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-04-11T05:41:34.265Z","etag":null,"topics":["fcfs-process-scheduling","os","priority-scheduling","round-robin-scheduler","scheduling-algorithms","sjf-process-scheduling","srtf-process-scheduling"],"latest_commit_sha":null,"homepage":"","language":"C++","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/divshekhar.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2022-01-09T03:41:04.000Z","updated_at":"2022-01-27T16:01:27.000Z","dependencies_parsed_at":null,"dependency_job_id":"6f026900-831e-42fb-a3f0-fb8b7f0e4bff","html_url":"https://github.com/divshekhar/os_process_schedulers","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/divshekhar/os_process_schedulers","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/divshekhar%2Fos_process_schedulers","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/divshekhar%2Fos_process_schedulers/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/divshekhar%2Fos_process_schedulers/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/divshekhar%2Fos_process_schedulers/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/divshekhar","download_url":"https://codeload.github.com/divshekhar/os_process_schedulers/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/divshekhar%2Fos_process_schedulers/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":264559528,"owners_count":23628040,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["fcfs-process-scheduling","os","priority-scheduling","round-robin-scheduler","scheduling-algorithms","sjf-process-scheduling","srtf-process-scheduling"],"created_at":"2024-11-07T02:18:08.040Z","updated_at":"2025-07-10T09:37:12.738Z","avatar_url":"https://github.com/divshekhar.png","language":"C++","funding_links":[],"categories":[],"sub_categories":[],"readme":"# OSPS\n\nOperating System Process Schedulers\n\n\u003cdiv align=\"center\"\u003e\n\u003cimg src=\"./img/osps.png\" width=\"50%\"\u003e\n\u003c/div\u003e\n\n![GitHub](https://img.shields.io/github/license/divshekhar/os_process_schedulers?style=plastic) ![GitHub top language](https://img.shields.io/github/languages/top/divshekhar/os_process_schedulers?style=plastic) ![GitHub repo size](https://img.shields.io/github/repo-size/divshekhar/os_process_schedulers?style=plastic) ![GitHub issues](https://img.shields.io/github/issues/divshekhar/os_process_schedulers?style=plastic) ![GitHub last commit](https://img.shields.io/github/last-commit/divshekhar/os_process_schedulers) ![GitHub forks](https://img.shields.io/github/forks/divshekhar/os_process_schedulers?style=social)\n\n## Quick Start\n\n\u003cdiv align=\"center\"\u003e\n\u003cimg src=\"./img/homescreen.jpg\" width=\"80%\" alt=\"Homescreen\"\u003e\n\u003c/div\u003e\n\n### Solution\n\n\u003cdiv align=\"center\"\u003e\n\u003cimg src=\"./img/solution.jpg\" width=\"80%\" alt=\"Homescreen\"\u003e\n\u003c/div\u003e\n\n## Build\n\n### Without Make\n\nUse this script to build the executable file.\n\n```bash\ng++ -std=c++17 -I ./include/ src/FCFS/fcfs.cpp src/SJF/sjf.cpp src/SRTF/srtf.cpp src/RR/rr.cpp src/PS/ps.cpp src/osps.cpp -o ./bin/osps.exe\n```\n\nRun the executable file using:\n\n```bash\n./bin/osps.exe\n```\n\n### Using Make\n\nBuild the executable file using:\n\n```bash\nmake build\n```\n\nRun the executable file using:\n\n```bash\nmake run\n```\n\nJust use `make` to build \u0026 run the executable file.\n\nUse `make clean` to remove the executable file.\n\n---\n\n|Short Form|Meaning|\n|--|--|\n|AT|Arrival Time of the process|\n|BT|Burst Time of the process|\n|ST|Start Time of the process|\n|CT|Completion Time of the process|\n|TAT|Turnaround Time of the process|\n|WT|Waiting Time of the process|\n|RT|Response Time of the process|\n\n---\n\n|Formulas used|\n|--|\n|TAT = CT - AT|\n|WT = TAT - BT|\n|RT = ST - AT|\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdivshekhar%2Fos_process_schedulers","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdivshekhar%2Fos_process_schedulers","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdivshekhar%2Fos_process_schedulers/lists"}