Skip to content

Commit dd6ccc7

Browse files
committed
Version 0.3.15 / registry 1.4.1
1 parent 1b8cafa commit dd6ccc7

File tree

5 files changed

+15
-10
lines changed

5 files changed

+15
-10
lines changed

CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
# 0.3.15
2+
# signal-hook-registry-1.4.1
3+
4+
* AIX support (experimental/not guaranteed to work).
5+
16
# 0.3.14
27

38
* Added the SIGINFO signal (where available).

Cargo.lock

+7-7
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "signal-hook"
3-
version = "0.3.14"
3+
version = "0.3.15"
44
authors = [
55
"Michal 'vorner' Vaner <vorner@vorner.cz>",
66
"Thomas Himmelstoss <thimm@posteo.de>",

signal-hook-registry/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "signal-hook-registry"
3-
version = "1.4.0"
3+
version = "1.4.1"
44
authors = [
55
"Michal 'vorner' Vaner <vorner@vorner.cz>",
66
"Masaki Hara <ackie.h.gmai@gmail.com>",

src/iterator/exfiltrator/raw.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ unsafe impl Exfiltrator for WithRawSiginfo {
8585
}
8686

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

0 commit comments

Comments
 (0)