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.
2 parents a7fd53a + 1529038 commit 8cb9dc5Copy full SHA for 8cb9dc5
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
@@ -144,6 +144,9 @@ libc_bitflags!{
144
/// Allows to use large pages, underlying alignment based on size.
145
#[cfg(target_os = "freesd")]
146
MAP_ALIGNED_SUPER;
147
+ /// Pages will be discarded in the core dumps.
148
+ #[cfg(target_os = "openbsd")]
149
+ MAP_CONCEAL;
150
}
151
152
0 commit comments