memmap2-rs
memmap2-rs copied to clipboard
MAP_STACK is a no-op on linux
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).