round-robin-scheduler
There are 120 repositories under round-robin-scheduler topic.
yousefkotp/CPU-Scheduling-Algorithms
An implementation of various CPU scheduling algorithms in C++. The algorithms included are First Come First Serve (FCFS), Round Robin (RR), Shortest Process Next (SPN), Shortest Remaining Time (SRT), Highest Response Ratio Next (HRRN), Feedback (FB) and Aging.
codophobia/process-scheduling-algorithms
Program for scheduling algorithms in C++
brilacasck/CPU-Scheduler
simulating scheduling algorithms of operating system for processes e.g. Priority Scheduling, Multi Level Scheduling, ...
harismuneer/Round-Robin-Scheduler
🤹 A C++ implementation of the Round Robin Scheduler algorithm for process scheduling.
shouryaraj/Process-scheduling-simulator
Created programs to simulate two different scheduling algorithms i.e. First come, first served and Preemptive Round Robin scheduling
skyousuf1070/OS_Programs
programs for Scheduling Algorithms like FCFS, Round Robin, SJF and Priority Scheduling of Operating System in C.
asad82/User-Level-Thread-Library
The program implements a user level thread library for Linux in C with pre-emption, locks, conditions, semaphores, scheduler, timers, multi-level priority queue ensuring synchronization in real world programs besides several other features making it a complete autonomous library for thread creation and management. Sample test programs utilizing the thread library are also included with the design document and code.
KhaledAshrafH/CPU-Scheduling-Simulator
This project is a Java program with a graphical user interface (GUI) designed to simulate different CPU scheduling algorithms. The goal of this project is to provide a hands-on experience and visual representation of various CPU scheduling algorithms, including Non-Preemptive Priority Scheduling, Non-Preemptive Shortest Job First (SJF), Shortest-Re
hirushacooray/cpu-scheduling-sim
CPU Scheduling Simulator
HouariZegai/SchedulingAlgorithms
Implementation of SPQ, WRR, and DWRR Scheduling Algorithms
Reza-Marzban/Operating-System-Simulator
OS Simulator with Memory management and Round Robin Scheduler
DhirajKelhe/OS-Project
The Scheduling problem is solved by Round Robin algorithm.
thegeekyasian/round-robin-go
round-robin-go is an implementation of round-robin algorithm that allows you to use your resources in a shared rational order. This project uses go generics that enables you to use any data type in your round robin implementation.
mayank-k-jha/CPU_Process_scheduling-and-deadlock_detection
CPU Process Scheduling and Deadlock Detection Using Bankers Algorithm
arasgungore/round-robin-DNS
A C++ project which implements a round-robin Domain Name System (DNS) using a tree structure.
ayushjain01/Round-Robin-Tournaments-Scheduling
In a Round Robin tournament every team plays every other team . There is a systematic approach to scheduling a Round Robin tournament. This method assumes that there are enough fields / pitches / courts so that all the games in a round can be played simultaneously. The technique is called the polygon method . Using this code you can generate a round robin match schedule within no time.
ImanRHT/MM1K_Queue_Simulation
A Performance Analysis of the M/M/1/K Queue Model via Discrete Event Simulation with Varied Service Orders
divshekhar/os_process_schedulers
Operating System Process Schedulers Solver
k8gb-io/go-weight-shuffling
Simple Weight Shuffling library in GO
ksketo/C-scheduler
A simple round-robin scheduler in C
saheelahmed2/Operating-System
Operating System Scheduling Algorithms
EmbeddedOS/x86-64-OperatingSystem
An Operating System based on x86-64 architecture.
oliviercotte/Arbiter
Round-robin arbiter verification in SystemVerilog
akshah1997/Dynamic-Round-Robin-Scheduling
Our implementation of Dynamic Round Robin Algorithm for CPU scheduling
dinocajic/round-robin-dynamic-quantum
The Preemptive Round Robin Scheduling Algorithm is an important scheduling algorithm used in both process scheduling and network scheduling. Processes are executed for a predefined unit of time called a quantum. Once the CPU executes the process for the specified time slice, the process either terminates or returns to the back of the ready queue if the process has any remaining burst time left. Numerous proposals have been made to improve the static quantum time of the Round Robin Scheduling Algorithm; most research focuses on the optimization of the ready queue. In this paper, I proposed having predefined optimized quantum times for most process that can be retrieved whenever a new process enters the ready queue.
sdhani/simulation-cpu-scheduling
A CPU-scheduling simulation with memory and I/O management 📋
ashvah/my_pok
pok-kernel with more schedulers
Gituser143/YACS
Yet Another Centralized Scheduler (YACS) is a scheduling framework that can schedule jobs for execution across a cluster.
HK-Transfield/Multitasking-kernel
A simple implementation of a preemptive multitasking kernel for the WRAMP processor, emphasizing the fundamentals of how multitasking works.
IamShubhamGupto/OS_Lab_UE18CS305
Assignment files used for OS Lab UE18CS305
jayskhatri/Operating-System-Concepts
This repository contains the operating system algorithms which I have implemented in my university coursework. Give a ⭐ if this repo has helped you.
luthra2059/Round-Robin-Scheduler
Java Program to simulate the working of the round robin scheduling algorithm.
priyanshu-lanjewar/cpu-scheduling-algo
CPU Scheduler Simulator Project
rmanaem/risk-warzone
Risk Warzone computer game
sjefvanleeuwen/ocelot-graceful-load-balancer
A Provider for Ocelot which provides a Round Robin Load balancer with API Nodes Health Checking.
Tamoziit/Round-Robin-Scheduling
Round Robin Scheduling Algorithm Simulation in C