memmap2-rs icon indicating copy to clipboard operation
memmap2-rs copied to clipboard

cross-platform Rust API for memory mapped IO

Results 5 memmap2-rs issues
Sort by recently updated
recently updated
newest added

I'm trying to test a rust project on Github Action but it yields an error only on Windows. That's all right at my desktop and Github Action Linux/macos so I...

After the maintainer of `owning_ref` has been unresponsive for a long time, I decided to publish my fix of `owning_ref` known soundness issues as a new crate, `safer_owning_ref`. Please migrate...

Would it be possible to support this flag? Currently the much older crate [mmap](https://crates.io/crates/mmap) supports it, but it hasn't been updated in 6 years (!).

According to the man page of `madvise`, MADV_HUGEPAGE works with file-mapped memory since Linux 5.4: > Since Linux 5.4, automatic scan of eligible areas and replacement by huge pages works...

https://www.man7.org/linux/man-pages/man2/mmap.2.html on linux, memmap2 should use MAP_GROWSDOWN, or possibly `MAP_GROWSDOWN | MAP_STACK`, for future proofing (glibc uses MAP_STACK despite it doing nothing).