File tree Expand file tree Collapse file tree 2 files changed +5
-0
lines changed Expand file tree Collapse file tree 2 files changed +5
-0
lines changed Original file line number Diff line number Diff line change @@ -46,6 +46,8 @@ This project adheres to [Semantic Versioning](https://semver.org/).
46
46
(#[ 1525] ( https://github.com/nix-rust/nix/pull/1525 ) )
47
47
- Added ` MAP_ALIGNED_SUPER ` mmap flag for freebsd.
48
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 ) )
49
51
50
52
### Changed
51
53
Original file line number Diff line number Diff line change @@ -144,6 +144,9 @@ libc_bitflags!{
144
144
/// Allows to use large pages, underlying alignment based on size.
145
145
#[ cfg( target_os = "freesd" ) ]
146
146
MAP_ALIGNED_SUPER ;
147
+ /// Pages will be discarded in the core dumps.
148
+ #[ cfg( target_os = "openbsd" ) ]
149
+ MAP_CONCEAL ;
147
150
}
148
151
}
149
152
You can’t perform that action at this time.
0 commit comments