diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2015-10-11 21:47:11 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2015-10-11 21:47:11 +0200 |
commit | 85378cded7d088cbd048f6e6e127846f489d1fca (patch) | |
tree | 3f65a3f64f736f365ba5ffb5b5d03ad80d8b2952 | |
parent | 932302666b0354ede63504d1bef8393cab28db8b (diff) | |
download | busybox-w32-85378cded7d088cbd048f6e6e127846f489d1fca.tar.gz busybox-w32-85378cded7d088cbd048f6e6e127846f489d1fca.tar.bz2 busybox-w32-85378cded7d088cbd048f6e6e127846f489d1fca.zip |
hush: code shrink
function old new delta
builtin_wait 347 328 -19
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
-rw-r--r-- | shell/hush.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/shell/hush.c b/shell/hush.c index 0d107715f..eabe83ac6 100644 --- a/shell/hush.c +++ b/shell/hush.c | |||
@@ -9120,12 +9120,9 @@ static int FAST_FUNC builtin_wait(char **argv) | |||
9120 | return EXIT_FAILURE; | 9120 | return EXIT_FAILURE; |
9121 | } | 9121 | } |
9122 | if (waitpid(pid, &status, 0) == pid) { | 9122 | if (waitpid(pid, &status, 0) == pid) { |
9123 | ret = WEXITSTATUS(status); | ||
9123 | if (WIFSIGNALED(status)) | 9124 | if (WIFSIGNALED(status)) |
9124 | ret = 128 + WTERMSIG(status); | 9125 | ret = 128 + WTERMSIG(status); |
9125 | else if (WIFEXITED(status)) | ||
9126 | ret = WEXITSTATUS(status); | ||
9127 | else /* wtf? */ | ||
9128 | ret = EXIT_FAILURE; | ||
9129 | } else { | 9126 | } else { |
9130 | bb_perror_msg("wait %s", *argv); | 9127 | bb_perror_msg("wait %s", *argv); |
9131 | ret = 127; | 9128 | ret = 127; |