summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbors[bot] <26634292+bors[bot]@users.noreply.github.com>2021-09-19 14:33:09 +0000
committerGitHub <noreply@github.com>2021-09-19 14:33:09 +0000
commit1c0bc5c2f5157270843898f89120c21a43f04c22 (patch)
treeb3419444b69fe2aa3b80b37d6549e2fd3be175a3
parent515e99bcffcf324d03128649f3ee0ca14d67b5b1 (diff)
parentb463e014d837236f22d3c8b967e0f25801d294bd (diff)
downloadnix-1c0bc5c2f5157270843898f89120c21a43f04c22.zip
Merge #1522
1522: mman mod adding MAP_ALIGNED_SUPER flag for freebsd. r=asomers a=devnexen Co-authored-by: David Carlier <devnexen@gmail.com>
-rw-r--r--CHANGELOG.md2
-rw-r--r--src/sys/mman.rs3
2 files changed, 5 insertions, 0 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 0d3e513a..91810187 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -44,6 +44,8 @@ This project adheres to [Semantic Versioning](https://semver.org/).
(#[1515](https://github.com/nix-rust/nix/pull/1515))
- Added `MAP_EXCL` mmap flag for freebsd.
(#[1525](https://github.com/nix-rust/nix/pull/1525))
+- Added `MAP_ALIGNED_SUPER` mmap flag for freebsd.
+ (#[1522](https://github.com/nix-rust/nix/pull/1522))
### Changed
diff --git a/src/sys/mman.rs b/src/sys/mman.rs
index 0ea7edaf..30d53881 100644
--- a/src/sys/mman.rs
+++ b/src/sys/mman.rs
@@ -140,6 +140,9 @@ libc_bitflags!{
MAP_NOCACHE;
#[cfg(any(target_os = "ios", target_os = "macos"))]
MAP_JIT;
+ /// Allows to use large pages, underlying alignment based on size.
+ #[cfg(target_os = "freesd")]
+ MAP_ALIGNED_SUPER;
}
}