aommap 0.3.1

Append only lock-free memory map implementation
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
#![cfg_attr(not(feature = "std"), no_std)]

extern crate alloc;

#[cfg(feature = "std")]
extern crate std;

mod mmap;
pub use mmap::*;

mod error;
pub use error::*;