Skip to content

Commit

Permalink
Version 0.3.15 / registry 1.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
vorner committed Feb 11, 2023
1 parent 1b8cafa commit dd6ccc7
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 10 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
# 0.3.15
# signal-hook-registry-1.4.1

* AIX support (experimental/not guaranteed to work).

# 0.3.14

* Added the SIGINFO signal (where available).
Expand Down
14 changes: 7 additions & 7 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "signal-hook"
version = "0.3.14"
version = "0.3.15"
authors = [
"Michal 'vorner' Vaner <vorner@vorner.cz>",
"Thomas Himmelstoss <thimm@posteo.de>",
Expand Down
2 changes: 1 addition & 1 deletion signal-hook-registry/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "signal-hook-registry"
version = "1.4.0"
version = "1.4.1"
authors = [
"Michal 'vorner' Vaner <vorner@vorner.cz>",
"Masaki Hara <ackie.h.gmai@gmail.com>",
Expand Down
2 changes: 1 addition & 1 deletion src/iterator/exfiltrator/raw.rs
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ unsafe impl Exfiltrator for WithRawSiginfo {
}

fn init(&self, slot: &Self::Storage, _: c_int) {
let new = Box::new(Channel::default());
let new = Box::default();
let old = slot.0.swap(Box::into_raw(new), Ordering::Release);
// We leak the pointer on purpose here. This is invalid state anyway and must not happen,
// but if it still does, we can't drop that while some other thread might still be having
Expand Down

0 comments on commit dd6ccc7

Please sign in to comment.