Expand description
POSIX shared memory allocation for cross-process data sharing.
Provides mmap(MAP_SHARED | MAP_ANONYMOUS) wrappers for allocating memory
visible across fork() boundaries. This is the foundation for all
cross-process state in the explorer.
Functions§
- alloc_
shared - Allocate shared memory visible across
fork()boundaries. - free_
shared ⚠ - Free shared memory allocated by
alloc_shared.