diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2009-04-04 20:24:37 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2009-04-04 20:24:37 +0000 |
commit | 34d4d89b2d3337ea1486d98ea979c1594a6a5efe (patch) | |
tree | 1ce6c4b4da6699c66733392c27f8dfc115e2edab /shell/lash_unused.c | |
parent | 552433bc5af76c8e5b52278b3d609e9a18c19dc2 (diff) | |
download | busybox-w32-34d4d89b2d3337ea1486d98ea979c1594a6a5efe.tar.gz busybox-w32-34d4d89b2d3337ea1486d98ea979c1594a6a5efe.tar.bz2 busybox-w32-34d4d89b2d3337ea1486d98ea979c1594a6a5efe.zip |
hush: fix NOMMU hangs in pseudo_exec_argv. Add forgotted setting
of signal mask. Reuse same help string in all shells.
function old new delta
builtin_exit 49 47 -2
pseudo_exec_argv 149 145 -4
builtin_help 74 63 -11
------------------------------------------------------------------------------
(add/remove: 0/0 grow/shrink: 0/3 up/down: 0/-17) Total: -17 bytes
text data bss dec hex filename
825379 476 7616 833471 cb7bf busybox_old
825341 476 7616 833433 cb799 busybox_unstripped
Diffstat (limited to 'shell/lash_unused.c')
-rw-r--r-- | shell/lash_unused.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/shell/lash_unused.c b/shell/lash_unused.c index 90b1f56cf..21ea5471b 100644 --- a/shell/lash_unused.c +++ b/shell/lash_unused.c | |||
@@ -312,8 +312,9 @@ static int builtin_help(struct child_prog UNUSED_PARAM *dummy) | |||
312 | { | 312 | { |
313 | const struct built_in_command *x; | 313 | const struct built_in_command *x; |
314 | 314 | ||
315 | printf("\nBuilt-in commands:\n" | 315 | printf("\n" |
316 | "-------------------\n"); | 316 | "Built-in commands:\n" |
317 | "------------------\n"); | ||
317 | for (x = bltins; x <= &VEC_LAST(bltins); x++) { | 318 | for (x = bltins; x <= &VEC_LAST(bltins); x++) { |
318 | if (x->descr == NULL) | 319 | if (x->descr == NULL) |
319 | continue; | 320 | continue; |