awesome-repositories.com
ब्लॉग
awesome-repositories.com

AI-संचालित खोज के साथ बेहतरीन ओपन-सोर्स रिपॉजिटरी खोजें।

एक्सप्लोर करेंक्यूरेटेड खोजेंओपन-सोर्स विकल्पसेल्फ-होस्टेड सॉफ्टवेयरब्लॉगसाइटमैप
प्रोजेक्टहमारे बारे मेंहम रैंकिंग कैसे करते हैंप्रेसMCP सर्वर
कानूनीगोपनीयताशर्तें
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·

3 रिपॉजिटरी

Awesome GitHub RepositoriesProcess Sleeping

Suspending a process for a specific duration to allow other tasks to run.

Distinct from Execution Pausing: Distinct from generic execution pausing by focusing on clock-tick based CPU yielding.

Explore 3 awesome GitHub repositories matching software engineering & architecture · Process Sleeping. Refine with filters or upvote what's useful.

Awesome Process Sleeping GitHub Repositories

AI के साथ बेहतरीन रिपॉजिटरी खोजें।हम AI का उपयोग करके सबसे सटीक रिपॉजिटरी खोजेंगे।
  • mit-pdos/xv6-publicmit-pdos का अवतार

    mit-pdos/xv6-public

    9,466GitHub पर देखें↗

    xv6 is a Unix-like educational operating system designed for teaching kernel concepts. It is implemented as an instructional kernel for x86 and RISC-V architectures, featuring a virtual memory manager and support for symmetric multiprocessing. The system is designed to demonstrate core OS principles through a simplified re-implementation of Unix Version 6. It provides a controlled environment for studying system calls, trap handling, and process lifecycles. Its capability surface covers process management, including scheduling and context switching, and memory management via page tables for

    Provides the ability to suspend processes for specified clock ticks to yield CPU time.

    C
    GitHub पर देखें↗9,466
  • sysprog21/lkmpgsysprog21 का अवतार

    sysprog21/lkmpg

    8,511GitHub पर देखें↗

    The Linux Kernel Module Programming Guide is an educational resource that teaches how to write, compile, and manage loadable kernel modules for modern Linux kernels. It covers the complete lifecycle of kernel modules, from building and loading to unloading and debugging, with a focus on extending kernel functionality without recompiling the entire kernel. The guide provides comprehensive coverage of core kernel programming concepts including dynamic module loading, file-operation registration, interrupt handling, kernel-user data copying, concurrency control, and deferred task scheduling. It

    Teaches condition-based process sleeping using waitevent and wakeup primitives.

    TeXbookscdevice-driver
    GitHub पर देखें↗8,511
  • cirosantilli/x86-bare-metal-examplescirosantilli का अवतार

    cirosantilli/x86-bare-metal-examples

    5,306GitHub पर देखें↗

    This project is a collection of minimal operating systems, bootloaders, and hardware drivers used to demonstrate low-level x86 system programming and hardware interfacing. It serves as a kernel development toolkit and a system programming lab designed for testing architecture concepts and hardware behavior within a system emulator. The repository provides reference implementations for creating bootable disk images and loading kernel stages. It includes guides for implementing protected mode transitions, memory paging, interrupt descriptor tables, and symmetric multiprocessing on x86 hardware.

    Provides a system sleep delay by interfacing with the hardware timer's clock ticks.

    Assemblyassemblybare-metalbaremetal
    GitHub पर देखें↗5,306
  1. Home
  2. Software Engineering & Architecture
  3. Execution Pausing
  4. Process Sleeping

सब-टैग एक्सप्लोर करें

  • Condition-BasedBlocks a process until a specific kernel condition is met, then wakes it up to continue execution. **Distinct from Process Sleeping:** Distinct from Process Sleeping: focuses on condition-based wakeup (wait_event) rather than time-based suspension.