2 repository-uri
Logic used by the kernel to determine which runnable task should execute next on a processor.
Distinguishing note: Candidates focus on human job eligibility or payment routing, not CPU scheduling logic.
Explore 2 awesome GitHub repositories matching operating systems & systems programming · Task Scheduling Algorithms. Refine with filters or upvote what's useful.
This project is a bare-metal operating system developed for ARM64 architecture. It serves as a low-level implementation of kernel engineering, focusing on the fundamental construction of an OS from the hardware level up. The system is distinguished by its comprehensive approach to ARM64 processor control, featuring a red-black tree task scheduler and a hierarchical page table system for virtual memory management. It implements a sophisticated privilege model that handles transitions between kernel and user modes, ensuring process isolation through address space splitting and exception level m
Implements a scheduler that identifies the most eligible task to run using virtual runtime algorithms.
This project is a collection of educational simulations and code examples designed to illustrate core operating system concepts. It provides practical implementations of virtualization, concurrency, and persistence to demonstrate how an operating system manages hardware and software resources. The repository includes simulators for CPU scheduling, memory virtualization via paging and segmentation, and file system architectures. It provides specific models for virtual-to-physical address translation and the distribution of processor time across competing tasks. The simulations cover concurren
Implements logic to determine which runnable task should execute next on a processor using various scheduling algorithms.