You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This pull adds two flags: MAP_SHARED_VALIDATE & MAP_SYNC implemented on
https://github.com/rust-lang/libc
The MAP_SHARED_VALIDATE flag was added to linux since 4.15, its a flag
that does two things: provide backwards compatibility with old mmap
implementations that don't check for flags, and allow new flags to be
added.
MAP_SYNC, on the other hand, was added to allow mmap to utilize Direct
Accses (DAX) on hardware that support it (non-volatile memory devices)
or in general: any ram-shaped filesystem.
both flags are available on both linux and android.
0 commit comments