We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1c0bc5c commit 1529038Copy full SHA for 1529038
CHANGELOG.md
@@ -46,6 +46,8 @@ This project adheres to [Semantic Versioning](https://semver.org/).
46
(#[1525](https://github.com/nix-rust/nix/pull/1525))
47
- Added `MAP_ALIGNED_SUPER` mmap flag for freebsd.
48
(#[1522](https://github.com/nix-rust/nix/pull/1522))
49
+- Added `MAP_CONCEAL` mmap flag for openbsd.
50
+ (#[1531](https://github.com/nix-rust/nix/pull/1531))
51
52
### Changed
53
src/sys/mman.rs
@@ -143,6 +143,9 @@ libc_bitflags!{
143
/// Allows to use large pages, underlying alignment based on size.
144
#[cfg(target_os = "freesd")]
145
MAP_ALIGNED_SUPER;
146
+ /// Pages will be discarded in the core dumps.
147
+ #[cfg(target_os = "openbsd")]
148
+ MAP_CONCEAL;
149
}
150
151
0 commit comments