Name | Date | Size | #Lines | LOC | ||
---|---|---|---|---|---|---|
.. | - | - | ||||
examples/ | 25-Apr-2025 | - | 24 | 15 | ||
src/ | 25-Apr-2025 | - | 3,478 | 1,808 | ||
.cargo-checksum.json | D | 25-Apr-2025 | 1 KiB | 1 | 1 | |
Android.bp | D | 25-Apr-2025 | 1.2 KiB | 52 | 47 | |
CHANGELOG.md | D | 25-Apr-2025 | 7.5 KiB | 202 | 165 | |
Cargo.lock | D | 25-Apr-2025 | 3.1 KiB | 119 | 104 | |
Cargo.toml | D | 25-Apr-2025 | 1.1 KiB | 44 | 38 | |
LICENSE | D | 25-Apr-2025 | 10.6 KiB | 202 | 169 | |
LICENSE-APACHE | D | 25-Apr-2025 | 10.6 KiB | 202 | 169 | |
LICENSE-MIT | D | 25-Apr-2025 | 1.1 KiB | 27 | 23 | |
METADATA | D | 25-Apr-2025 | 483 | 22 | 21 | |
MODULE_LICENSE_APACHE2 | D | 25-Apr-2025 | 0 | |||
README.md | D | 25-Apr-2025 | 1.1 KiB | 34 | 23 | |
cargo_embargo.json | D | 25-Apr-2025 | 169 | 13 | 12 |
README.md
1# memmap2 2 3[](https://crates.io/crates/memmap2) 4[](https://docs.rs/memmap2) 5[](https://www.rust-lang.org) 6 7A Rust library for cross-platform memory mapped IO. 8 9This is a **fork** of the [memmap-rs](https://github.com/danburkert/memmap-rs) crate. 10 11## Features 12 13- [x] file-backed memory maps 14- [x] anonymous memory maps 15- [x] synchronous and asynchronous flushing 16- [x] copy-on-write memory maps 17- [x] read-only memory maps 18- [x] stack support (`MAP_STACK` on unix) 19- [x] executable memory maps 20- [ ] huge page support 21 22A list of supported/tested targets can be found in [Actions](https://github.com/RazrFalcon/memmap2-rs/actions). 23 24## License 25 26`memmap2` is primarily distributed under the terms of both the MIT license and the 27Apache License (Version 2.0). 28 29See [LICENSE-APACHE](LICENSE-APACHE), [LICENSE-MIT](LICENSE-MIT) for details. 30 31Copyright (c) 2020 Yevhenii Reizner 32 33Copyright (c) 2015 Dan Burkert 34