Skip to content

Commit

Permalink
feat: Futex
Browse files Browse the repository at this point in the history
  • Loading branch information
JonathanWoollett-Light committed Feb 12, 2023
1 parent b2318f9 commit 8c0da9a
Show file tree
Hide file tree
Showing 4 changed files with 392 additions and 1 deletion.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Expand Up @@ -7,6 +7,8 @@ This project adheres to [Semantic Versioning](https://semver.org/).
### Added
- Added `AT_EACCESS` to `AtFlags` on all platforms but android
([#1995](https://github.com/nix-rust/nix/pull/1995))
- Added futex interface.
([#1907](https://github.com/nix-rust/nix/pull/1907))
- Add `PF_ROUTE` to `SockType` on macOS, iOS, all of the BSDs, Fuchsia, Haiku, Illumos.
([#1867](https://github.com/nix-rust/nix/pull/1867))
- Added `nix::ucontext` module on `aarch64-unknown-linux-gnu`.
Expand Down
3 changes: 2 additions & 1 deletion Cargo.toml
Expand Up @@ -42,7 +42,7 @@ default = [
"hostname", "inotify", "ioctl", "kmod", "mman", "mount", "mqueue",
"net", "personality", "poll", "process", "pthread", "ptrace", "quota",
"reboot", "resource", "sched", "signal", "socket", "term", "time",
"ucontext", "uio", "user", "zerocopy",
"ucontext", "uio", "user", "zerocopy", "futex"
]

acct = []
Expand Down Expand Up @@ -77,6 +77,7 @@ ucontext = ["signal"]
uio = []
user = ["feature"]
zerocopy = ["fs", "uio"]
futex = []

[dev-dependencies]
assert-impl = "0.1"
Expand Down

0 comments on commit 8c0da9a

Please sign in to comment.