1 repository
Mechanisms for allowing multiple execution units to reuse a common memory region for their stacks to reduce overhead.
Distinct from Stack Memory Management: Distinct from general stack memory management by focusing on the pooling and sharing of stack regions across multiple routines.
Explore 1 awesome GitHub repository matching operating systems & systems programming · Shared Stack Pooling. Refine with filters or upvote what's useful.
libaco is a low-level C library for cooperative multitasking that provides a runtime for managing asymmetric coroutines. It functions as an execution context manager and stack memory allocator, allowing a single process to initialize independent execution units with private stacks and perform manual context switching via yield operations. The library distinguishes itself through its memory management and stability features, utilizing read-only guard pages at stack boundaries to trigger hardware faults upon stack overflow. It supports both private stack allocation and shared stack pooling to r
Supports shared stack pooling to reduce total system memory overhead while maintaining overflow protection.