Library for creating and managing [MEM_SIZE] bytes copy-on-write
memory-mapped regions.
The core functionality is offered by the [Mmap] struct, which is a
read-write memory region that keeps track of which pages have been written
to.
Each Mmap is MEM_SIZE in size, and can be backed by physical memory, a
set of files, or a combination of both. Each page is [PAGE_SIZE] in size,
meaning that each mmap contains 65536 pages.
Example
# use io;
#
Limitations
This crate currently only builds for 64-bit Unix targets. This is because it
relies on various features of libc which are not available in other
targets.