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 @@ -44,6 +44,8 @@ This project adheres to [Semantic Versioning](https://semver.org/).
4444 (#[ 1515] ( https://github.com/nix-rust/nix/pull/1515 ) )
4545- Added ` MAP_EXCL ` mmap flag for freebsd.
4646 (#[ 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 ) )
4749
4850### Changed
4951
Original file line number Diff line number Diff line change @@ -140,6 +140,9 @@ libc_bitflags!{
140140 MAP_NOCACHE ;
141141 #[ cfg( any( target_os = "ios" , target_os = "macos" ) ) ]
142142 MAP_JIT ;
143+ /// Allows to use large pages, underlying alignment based on size.
144+ #[ cfg( target_os = "freesd" ) ]
145+ MAP_ALIGNED_SUPER ;
143146 }
144147}
145148
You can’t perform that action at this time.
0 commit comments