Skip to main contentCrate forkheap
Source - FileAllocator
- A file-backed allocator for use in multiprocess programs or with very large allocations. Concurrent heap access is
managed by a spinlock mutex.
- ForkBox
- Box-like container for data in a shared heap that is accessed concurrently by multiple forks.
- SynchronizableAllocator
- Trait which denotes that an allocator may be synchronised across forks.
- Mutex
- A primitive that synchronizes the execution of multiple threads. See
mutex::Mutex for documentation.