summaryrefslogtreecommitdiff
path: root/CHANGELOG.md
diff options
context:
space:
mode:
authorbors[bot] <26634292+bors[bot]@users.noreply.github.com>2021-12-22 19:19:28 +0000
committerGitHub <noreply@github.com>2021-12-22 19:19:28 +0000
commite2298bb098e6a37b0c4f39f4e1d5b06a9b9243e2 (patch)
tree263336461c495b061993b8cbffd239286e24d498 /CHANGELOG.md
parent78f2301a7404943eca69f024a9da775e2d5a44c5 (diff)
parent11494ecdadaf0a7936a14528f3b291292966b4ef (diff)
downloadnix-e2298bb098e6a37b0c4f39f4e1d5b06a9b9243e2.zip
Merge #1581
1581: Add fdatasync for missing platforms r=rtzoeller a=rtzoeller These platforms stub out `fdatasync()` by just calling `fsync()`, but that is a conforming implementation. DragonFly recently provided [an implementation](https://github.com/DragonFlyBSD/DragonFlyBSD/commit/74fa2560ac77f9db4a34b2a7c72450126fec4ed6), but it has not made it into a release or rust-lang/libc. Co-authored-by: Ryan Zoeller <rtzoeller@rtzoeller.com>
Diffstat (limited to 'CHANGELOG.md')
-rw-r--r--CHANGELOG.md2
1 files changed, 2 insertions, 0 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 5c4c3eb3..319e19ad 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -13,6 +13,8 @@ This project adheres to [Semantic Versioning](https://semver.org/).
(#[1611](https://github.com/nix-rust/nix/pull/1611))
- Added `EPOLLEXCLUSIVE` on Android.
(#[1567](https://github.com/nix-rust/nix/pull/1567))
+- Added `fdatasync` for FreeBSD, Fuchsia, NetBSD, and OpenBSD.
+ (#[1581](https://github.com/nix-rust/nix/pull/1581))
### Changed
### Fixed