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
·

3 dépôts

Awesome GitHub RepositoriesOS Thread Spawning

Creating execution units directly managed by the operating system scheduler.

Distinct from Parallel Task Spawning: Focuses on native OS threads specifically, whereas Parallel Task Spawning is more general about concurrent operations.

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

Awesome OS 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.
  • rust-lang/rust-by-exampleAvatar de rust-lang

    rust-lang/rust-by-example

    8,026Voir sur GitHub↗

    This project is an interactive programming education resource and tutorial designed for learning the Rust programming language and systems programming concepts. It provides a collection of runnable and editable code examples that serve as a practical reference for language syntax and implementation. The resource features an interactive code sandbox that allows users to execute and test code snippets in real time. It emphasizes the verification of technical accuracy by executing embedded code blocks during the build process to ensure all examples remain functional. The content covers a compre

    Teaches how to spawn native operating system threads for parallel task execution.

    Handlebars
    Voir sur GitHub↗8,026
  • 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

Explorer les sous-tags

  • Kernel Thread Spawning1 sous-tagCreates 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.
  • Thread Binding MechanismsMechanisms for locking execution units to specific OS threads to ensure compatibility with thread-local storage or C libraries. **Distinct from OS Thread Spawning:** Distinct from OS Thread Spawning: focuses on binding existing tasks to threads, not creating new threads.