Skip to content

Commit 9cdcb40

Browse files
committed
Added AT_EACCESS to AtFlags on all platforms
1 parent 1a838c7 commit 9cdcb40

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ This project adheres to [Semantic Versioning](https://semver.org/).
55

66
## [Unreleased] - ReleaseDate
77
### Added
8+
- Added `AT_EACCESS` to `AtFlags` on all platforms
9+
([#1995](https://github.com/nix-rust/nix/pull/1995))
810
- Add `PF_ROUTE` to `SockType` on macOS, iOS, all of the BSDs, Fuchsia, Haiku, Illumos.
911
([#1867](https://github.com/nix-rust/nix/pull/1867))
1012
- Added `nix::ucontext` module on `aarch64-unknown-linux-gnu`.

src/fcntl.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,12 +31,11 @@ libc_bitflags! {
3131
AT_REMOVEDIR;
3232
AT_SYMLINK_FOLLOW;
3333
AT_SYMLINK_NOFOLLOW;
34+
AT_EACCESS;
3435
#[cfg(any(target_os = "android", target_os = "linux"))]
3536
AT_NO_AUTOMOUNT;
3637
#[cfg(any(target_os = "android", target_os = "linux"))]
3738
AT_EMPTY_PATH;
38-
#[cfg(any(target_os = "illumos", target_os = "solaris"))]
39-
AT_EACCESS;
4039
}
4140
}
4241

0 commit comments

Comments
 (0)