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/).
44
44
(#[ 1515] ( https://github.com/nix-rust/nix/pull/1515 ) )
45
45
- Added ` MAP_EXCL ` mmap flag for freebsd.
46
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 ) )
47
49
48
50
### Changed
49
51
Original file line number Diff line number Diff line change @@ -140,6 +140,9 @@ libc_bitflags!{
140
140
MAP_NOCACHE ;
141
141
#[ cfg( any( target_os = "ios" , target_os = "macos" ) ) ]
142
142
MAP_JIT ;
143
+ /// Allows to use large pages, underlying alignment based on size.
144
+ #[ cfg( target_os = "freesd" ) ]
145
+ MAP_ALIGNED_SUPER ;
143
146
}
144
147
}
145
148
You can’t perform that action at this time.
0 commit comments