aboutsummaryrefslogtreecommitdiff
path: root/shell
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2011-02-14 17:17:10 +0100
committerDenys Vlasenko <vda.linux@googlemail.com>2011-02-14 17:17:10 +0100
commit7c6f2468ccc849c9f8401ee97a3d894d8f483773 (patch)
tree39c358e7bc5758c691516146e4795353e126e1e8 /shell
parentb9348440b0491b479457b304754bca4840286f74 (diff)
downloadbusybox-7c6f2468ccc849c9f8401ee97a3d894d8f483773.tar.gz
hush: do not print killer signal's name for SIGPIPE
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'shell')
-rw-r--r--shell/ash.c1
-rw-r--r--shell/hush.c6
2 files changed, 5 insertions, 2 deletions
diff --git a/shell/ash.c b/shell/ash.c
index aaf21cd6f..cccd6dd79 100644
--- a/shell/ash.c
+++ b/shell/ash.c
@@ -3892,6 +3892,7 @@ sprint_status(char *s, int status, int sigonly)
#endif
}
st &= 0x7f;
+//TODO: use bbox's get_signame? strsignal adds ~600 bytes to text+rodata
col = fmtstr(s, 32, strsignal(st));
if (WCOREDUMP(status)) {
col += fmtstr(s + col, 16, " (core dumped)");
diff --git a/shell/hush.c b/shell/hush.c
index 00ef361cd..4d9e5f8c7 100644
--- a/shell/hush.c
+++ b/shell/hush.c
@@ -6504,13 +6504,15 @@ static int checkjobs(struct pipe *fg_pipe)
fg_pipe->alive_cmds--;
ex = WEXITSTATUS(status);
/* bash prints killer signal's name for *last*
- * process in pipe (prints just newline for SIGINT).
+ * process in pipe (prints just newline for SIGINT/SIGPIPE).
* Mimic this. Example: "sleep 5" + (^\ or kill -QUIT)
*/
if (WIFSIGNALED(status)) {
int sig = WTERMSIG(status);
if (i == fg_pipe->num_cmds-1)
- printf("%s\n", sig == SIGINT ? "" : get_signame(sig));
+ /* TODO: use strsignal() instead for bash compat? but that's bloat... */
+ printf("%s\n", sig == SIGINT || sig == SIGPIPE ? "" : get_signame(sig));
+ /* TODO: if (WCOREDUMP(status)) + " (core dumped)"; */
/* TODO: MIPS has 128 sigs (1..128), what if sig==128 here?
* Maybe we need to use sig | 128? */
ex = sig + 128;