summaryrefslogtreecommitdiff
path: root/CHANGELOG.md
diff options
context:
space:
mode:
authorGerman Maglione <gmaglione@redhat.com>2022-06-20 11:57:04 +0200
committerGerman Maglione <gmaglione@redhat.com>2022-07-12 17:25:51 +0200
commitb207aaee4ca5721314d03172bbf188e63ec21cc3 (patch)
treecc786cd4c04eed8fcd8257962ef01de24a1ad331 /CHANGELOG.md
parent3d44d276e768f47cefe301e3affbefd315dc1327 (diff)
downloadnix-b207aaee4ca5721314d03172bbf188e63ec21cc3.zip
SigSet: Add the `repr(transparent)` attribute
This commit adds the `repr(transparent)` attribute to the `SigSet` struct, to make sure that its representation is exactly like the `sigset_t` struct from C, in all cases. Signed-off-by: German Maglione <gmaglione@redhat.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 02620c36..b3f21301 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -39,6 +39,8 @@ This project adheres to [Semantic Versioning](https://semver.org/).
(#[1739](https://github.com/nix-rust/nix/pull/1739))
- Changed `gethostname` to return an owned `OsString`.
(#[1745](https://github.com/nix-rust/nix/pull/1745))
+- `signal:SigSet` is now marked as `repr(transparent)`.
+ (#[1741](https://github.com/nix-rust/nix/pull/1741))
### Fixed