From 85b68d1181e4a02451286a696e53cb01e214df6e Mon Sep 17 00:00:00 2001 From: Curtis D'Alves Date: Tue, 30 Sep 2025 15:14:20 -0400 Subject: [PATCH 1/2] include AIX in FromStr for Signal impl for SIGPWR --- src/sys/signal.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/sys/signal.rs b/src/sys/signal.rs index d8fc64e230..817af4bfca 100644 --- a/src/sys/signal.rs +++ b/src/sys/signal.rs @@ -172,6 +172,7 @@ impl FromStr for Signal { linux_android, target_os = "emscripten", target_os = "fuchsia", + target_os = "aix", ))] "SIGPWR" => Signal::SIGPWR, "SIGSYS" => Signal::SIGSYS, From e02849215a47802793b9d2e3150fe78175ab9804 Mon Sep 17 00:00:00 2001 From: Curtis D'Alves Date: Tue, 30 Sep 2025 15:20:49 -0400 Subject: [PATCH 2/2] add changelog for #2680 fix --- changelog/2680.fixed.md | 1 + 1 file changed, 1 insertion(+) create mode 100644 changelog/2680.fixed.md diff --git a/changelog/2680.fixed.md b/changelog/2680.fixed.md new file mode 100644 index 0000000000..911bef0c1f --- /dev/null +++ b/changelog/2680.fixed.md @@ -0,0 +1 @@ +Include `SIGPWR` in `impl FromStr for Signal` for AIX