Skip to content

Commit

Permalink
Merge #1582
Browse files Browse the repository at this point in the history
1582: impl Send and Sync for IoVec r=rtzoeller a=asomers



Co-authored-by: Alan Somers <asomers@gmail.com>
  • Loading branch information
bors[bot] and asomers committed Dec 22, 2021
2 parents 5f71467 + 2d45fab commit 6c6c576
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Expand Up @@ -8,6 +8,8 @@ This project adheres to [Semantic Versioning](https://semver.org/).

- Added `fexecve` on DragonFly.
(#[1577](https://github.com/nix-rust/nix/pull/1577))
- `sys::uio::IoVec` is now `Send` and `Sync`
(#[1582](https://github.com/nix-rust/nix/pull/1582))
- Added fine-grained features flags. Most Nix functionality can now be
conditionally enabled. By default, all features are enabled.
(#[1611](https://github.com/nix-rust/nix/pull/1611))
Expand Down
5 changes: 5 additions & 0 deletions src/sys/uio.rs
Expand Up @@ -228,3 +228,8 @@ impl<'a> IoVec<&'a mut [u8]> {
}, PhantomData)
}
}

// The only reason IoVec isn't automatically Send+Sync is because libc::iovec
// contains raw pointers.
unsafe impl<T> Send for IoVec<T> where T: Send {}
unsafe impl<T> Sync for IoVec<T> where T: Sync {}

0 comments on commit 6c6c576

Please sign in to comment.