awesome-repositories.com
Blog
MCP
awesome-repositories.com

Découvrez les meilleurs dépôts open-source grâce à notre recherche par IA.

ExplorerRecherches sélectionnéesAlternatives open sourceLogiciels auto-hébergésBlogPlan du site
ProjetServeur MCPÀ proposNotre méthodologiePresse
Mentions légalesConfidentialitéConditions d'utilisation
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·

6 dépôts

Awesome GitHub RepositoriesCPU Schedulers

Implements multiple CPU scheduling algorithms including BORE, EEVDF, and BMQ for optimizing task prioritization and system responsiveness.

Distinguishing note: None of the candidates relate to CPU scheduling; they cover task runners, UI schedulers, or Windows-specific scheduling. This is a kernel-level CPU scheduler, distinct from all.

Explore 6 awesome GitHub repositories matching operating systems & systems programming · CPU Schedulers. Refine with filters or upvote what's useful.

Awesome CPU Schedulers GitHub Repositories

Trouvez les meilleurs dépôts grâce à l'IA.Nous recherchons les dépôts les plus pertinents grâce à l'IA.
  • cavszhouyou/front-end-interview-notebookAvatar de CavsZhouyou

    CavsZhouyou/Front-End-Interview-Notebook

    7,739Voir sur GitHub↗

    This project is a front-end interview study guide and a collection of structured notes designed for technical job preparation. It serves as a comprehensive reference for web technologies, common technical interview questions, and JavaScript algorithm implementation. The notebook distinguishes itself by integrating specialized guides for web performance optimization, browser API documentation, and JavaScript algorithm references. It provides a structured approach to solving coding challenges involving data structures like binary trees, linked lists, and array manipulation. The content covers

    Provides theoretical knowledge on CPU scheduling algorithms such as priority-based and round-robin.

    Voir sur GitHub↗7,739
  • yourtion/30daymakeosAvatar de yourtion

    yourtion/30dayMakeOS

    6,412Voir sur GitHub↗

    30dayMakeOS is an educational hobby operating system project designed for the x86 architecture. It implements a monolithic kernel and a custom bootloader that transitions the CPU from real mode to 32-bit protected mode to enable flat memory addressing. The project focuses on low-level system development, featuring a custom graphics driver for direct pixel-buffer rendering and window management without an existing operating system. It includes an x86 bootloader that loads the kernel from disk into memory. The system covers core kernel capabilities including round-robin task scheduling for pro

    Implements a kernel-level CPU scheduler to enable concurrent execution of multiple processes.

    Casmbootc
    Voir sur GitHub↗6,412
  • angrave/systemprogrammingAvatar de angrave

    angrave/SystemProgramming

    5,734Voir sur GitHub↗

    This is an open-source, crowd-sourced wiki textbook that teaches Linux system programming in C. It covers the core operating system concepts of process management through the fork-exec-wait model, dynamic memory allocation using implicit free list heap allocators, inode-based file systems, inter-process communication via pipes and shared memory, POSIX threads with synchronization primitives, signal-based asynchronous notification, virtual memory with page table translation, and runtime diagnostics using Valgrind and GDB. The textbook distinguishes itself by providing practical, implementation

    Explains the Linux Completely Fair Scheduler as part of the process scheduling curriculum.

    Voir sur GitHub↗5,734
  • cloudius-systems/osvAvatar de cloudius-systems

    cloudius-systems/osv

    4,253Voir sur GitHub↗

    OSV est un système d'exploitation unikernel et un environnement d'exécution cloud-native conçu pour s'exécuter en tant que microVM sécurisée sur des hyperviseurs tels que KVM, Firecracker, Xen et VMware. Il fonctionne comme un runtime compatible avec les binaires Linux, permettant aux binaires Linux non modifiés d'être exécutés en tant que microVMs sécurisées sans nécessiter de recompilation. Le projet se distingue par sa capacité à empaqueter des applications dans des images amorçables minimales et sa fourniture d'une API de gestion de machine virtuelle. Cette interface REST permet la surveillance à distance de la santé du système, la gestion des traces d'exécution et le contrôle des états des machines virtuelles invitées. Le système couvre un large éventail de capacités de bas niveau, incluant la planification symétrique multi-processeurs, une pile réseau basée sur canal et l'intégration de périphériques virtuels. Il inclut des outils d'observabilité complets pour la détection de fuites mémoire, l'échantillonnage de l'utilisation CPU et le traçage de paquets réseau, ainsi qu'une prise en charge de divers systèmes de fichiers de démarrage et de la gestion du stockage par blocs persistant.

    Implements a symmetric multiprocessing scheduler to distribute multithreaded workloads across multiple virtual CPUs using load balancing.

    C
    Voir sur GitHub↗4,253
  • eunomia-bpf/bpf-developer-tutorialAvatar de eunomia-bpf

    eunomia-bpf/bpf-developer-tutorial

    4,145Voir sur GitHub↗

    Ce projet est une ressource éducative fournissant un tutoriel de développement complet pour écrire et charger des programmes eBPF en utilisant C, Go et Rust au sein du noyau Linux. Il sert de guide technique pour développer une logique personnalisée à exécuter directement dans le noyau. Les matériaux couvrent des domaines spécialisés, notamment l'observabilité et le traçage du noyau, l'implémentation de la sécurité pour la détection d'intrusion et l'ingénierie réseau haute performance pour le filtrage de paquets et l'équilibrage de charge. Il inclut également des manuels dédiés pour le traçage du noyau Linux et l'utilisation de kprobes, uprobes et tracepoints. Le projet englobe un large éventail de domaines de capacités, tels que l'instrumentation du noyau, la surveillance et l'observabilité du système, l'analyse réseau et l'application de la sécurité. Il s'étend en outre au débogage au niveau matériel pour les GPU et les pilotes, ainsi qu'à la manipulation système de bas niveau et à la gestion des ressources.

    Tracks task execution time relative to weights to ensure fair resource distribution in the kernel.

    Cbpfebpfexamples
    Voir sur GitHub↗4,145
  • cachyos/linux-cachyosAvatar de CachyOS

    CachyOS/linux-cachyos

    2,796Voir sur GitHub↗

    linux-cachyos is a performance-tuned Arch Linux kernel distribution that combines advanced compiler optimizations with multiple CPU scheduler options to enhance system responsiveness and throughput. The project provides kernel variants supporting BORE, EEVDF, and BMQ schedulers, enabling users to match scheduling behavior to interactive, general-purpose, or throughput-oriented workloads, alongside real-time preemption capabilities for time-sensitive applications. The kernel is compiled using Clang with Thin Link-Time Optimization and incorporates AutoFDO profile-guided optimization, which use

    Provides a custom BORE scheduler that prioritizes interactive tasks to reduce input lag.

    Shellarchlinuxbaby-schedcachy
    Voir sur GitHub↗2,796
  1. Home
  2. Operating Systems & Systems Programming
  3. CPU Schedulers

Explorer les sous-tags

  • BORE EEVDF BMQ VariantsKernel variants with BORE, EEVDF, and BMQ schedulers for interactive, general-purpose, or throughput-oriented workloads. **Distinct from CPU Schedulers:** Distinct from CPU Schedulers: focuses on specific scheduler variants (BORE, EEVDF, BMQ) rather than general CPU scheduling concepts.
  • Completely Fair SchedulersThe default Linux CPU scheduler that uses a red-black tree to select the process with the lowest virtual runtime. **Distinct from CPU Schedulers:** Distinct from general CPU Schedulers: specifies the Linux CFS algorithm with virtual runtime and red-black tree selection.