Skip to content

Commit

Permalink
feat: Futex
Browse files Browse the repository at this point in the history
  • Loading branch information
JonathanWoollett-Light committed Jan 1, 2023
1 parent ed0e859 commit b1c13c9
Show file tree
Hide file tree
Showing 4 changed files with 393 additions and 1 deletion.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Expand Up @@ -5,6 +5,9 @@ This project adheres to [Semantic Versioning](https://semver.org/).

## [Unreleased] - ReleaseDate
### Added

- 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 b1c13c9

Please sign in to comment.