mirror of
https://github.com/RGBCube/serenity
synced 2025-05-20 14:55:08 +00:00
Shell: When a command is terminated by a signal, print signal description.
Previously we were only printing the signal number (except for SIGINT.)
This commit is contained in:
parent
7c37ffd9d8
commit
0fa098845f
1 changed files with 1 additions and 8 deletions
|
@ -405,14 +405,7 @@ static int run_command(const String& cmd)
|
|||
return WEXITSTATUS(wstatus);
|
||||
} else {
|
||||
if (WIFSIGNALED(wstatus)) {
|
||||
switch (WTERMSIG(wstatus)) {
|
||||
case SIGINT:
|
||||
printf("Interrupted\n");
|
||||
break;
|
||||
default:
|
||||
printf("Terminated by signal %d\n", WTERMSIG(wstatus));
|
||||
break;
|
||||
}
|
||||
puts(strsignal(WTERMSIG(wstatus)));
|
||||
} else {
|
||||
printf("Exited abnormally\n");
|
||||
return 1;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue