Commit 537addee authored by Colin Ian King's avatar Colin Ian King Committed by Catalin Marinas

kselftest/arm64: Fix spelling misakes of signal names

There are a couple of spelling mistakes of signame names. Fix them.
Signed-off-by: default avatarColin Ian King <colin.i.king@gmail.com>
Link: https://lore.kernel.org/r/20220907170902.687340-1-colin.i.king@gmail.comSigned-off-by: default avatarCatalin Marinas <catalin.marinas@arm.com>
parent af3ce550
...@@ -247,7 +247,7 @@ static void handle_child_signal(int sig, siginfo_t *info, void *context) ...@@ -247,7 +247,7 @@ static void handle_child_signal(int sig, siginfo_t *info, void *context)
} }
if (!found) if (!found)
ksft_print_msg("SIGCHILD for unknown PID %d with status %d\n", ksft_print_msg("SIGCHLD for unknown PID %d with status %d\n",
info->si_pid, info->si_status); info->si_pid, info->si_status);
} }
...@@ -457,7 +457,7 @@ int main(int argc, char **argv) ...@@ -457,7 +457,7 @@ int main(int argc, char **argv)
strerror(errno), errno); strerror(errno), errno);
ret = sigaction(SIGTERM, &sa, NULL); ret = sigaction(SIGTERM, &sa, NULL);
if (ret < 0) if (ret < 0)
ksft_print_msg("Failed to install SIGTEM handler: %s (%d)\n", ksft_print_msg("Failed to install SIGTERM handler: %s (%d)\n",
strerror(errno), errno); strerror(errno), errno);
sa.sa_sigaction = handle_child_signal; sa.sa_sigaction = handle_child_signal;
ret = sigaction(SIGCHLD, &sa, NULL); ret = sigaction(SIGCHLD, &sa, NULL);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment