summaryrefslogtreecommitdiff
path: root/CHANGELOG.md
diff options
context:
space:
mode:
authorDan Gohman <sunfish@mozilla.com>2019-05-06 20:53:42 -0700
committerDan Gohman <sunfish@mozilla.com>2019-05-17 15:23:14 -0700
commit45ec8fc2eea2a49e618f8febdae68df07f98d68d (patch)
treeac604c8d49c502d1b1c85a3d99e546823bb72cfe /CHANGELOG.md
parent434b8669a11eed573968781c6732d9eccd24b765 (diff)
downloadnix-45ec8fc2eea2a49e618f8febdae68df07f98d68d.zip
Implement `sched_yield`.
This adds the `sched_yield` function, which is part of POSIX: http://pubs.opengroup.org/onlinepubs/9699919799/functions/sched_yield.html and widely implemented on Unix-family platforms.
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 aa741580..c3fec682 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -26,6 +26,8 @@ This project adheres to [Semantic Versioning](http://semver.org/).
([#1045](https://github.com/nix-rust/nix/pull/1045))
- Add `forkpty`
([#1042](https://github.com/nix-rust/nix/pull/1042))
+- Add `sched_yield`
+ ([#1050](https://github.com/nix-rust/nix/pull/1050))
### Changed
- `PollFd` event flags renamed to `PollFlags` ([#1024](https://github.com/nix-rust/nix/pull/1024/))