awesome-repositories.com
Blog
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
ProjetÀ proposNotre méthodologiePresseServeur MCP
Mentions légalesConfidentialitéConditions d'utilisation
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·

2 dépôts

Awesome GitHub RepositoriesKernel Thread Spawning

Creates the first kernel thread and the initial user-space process to begin task scheduling and system operation.

Distinct from OS Thread Spawning: Distinct from OS Thread Spawning: focuses on the kernel's internal thread creation (kthreadd) and initial user-space process, not general OS thread creation.

Explore 2 awesome GitHub repositories matching software engineering & architecture · Kernel Thread Spawning. Refine with filters or upvote what's useful.

Awesome Kernel Thread Spawning 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.
  • balloonwj/cppguideAvatar de balloonwj

    balloonwj/CppGuide

    6,030Voir sur GitHub↗

    CppGuide is a curated collection of educational resources and practical guides focused on C++ server development, Linux kernel internals, concurrent programming, network protocols, and security exploitation. It provides structured learning paths for backend developers, covering everything from interview preparation to building high-performance network servers and understanding operating system fundamentals. The guide distinguishes itself by offering in-depth, hands-on tutorials that walk through real-world implementations, including building a Redis-like server from scratch, designing custom

    Describes how the kernel creates its first thread and initial user-space process during boot.

    Voir sur GitHub↗6,030
  • sel4/sel4Avatar de seL4

    seL4/seL4

    5,583Voir sur GitHub↗

    seL4 is a formally verified microkernel whose C implementation is backed by machine-checked mathematical proofs of correctness, confidentiality, integrity, and availability. It enforces strict isolation between processes through hardware-enforced address space separation and a capability-based access control system, where each process holds explicit rights only to the resources it has been granted. The kernel exposes hardware resources through a minimal API of system calls that manage threads, address spaces, and inter-process communication, with synchronous IPC supporting sender-identifying b

    Provides kernel API to allocate, configure, and start execution of a new thread.

    Cmicrokernelossel4
    Voir sur GitHub↗5,583
  1. Home
  2. Software Engineering & Architecture
  3. Task Scheduling
  4. Parallel Task Executors
  5. Parallel Task Spawning
  6. OS Thread Spawning
  7. Kernel Thread Spawning

Explorer les sous-tags

  • Capability-Separated Thread SpawningCreating a new thread that shares the virtual address space but has its own capability space, isolating its access rights. **Distinct from Kernel Thread Spawning:** Distinct from Kernel Thread Spawning: focuses on creating threads with separate capability spaces for access control isolation, not general kernel thread creation.