diff options
author | Denys Vlasenko | 2009-09-27 02:05:45 +0200 |
---|---|---|
committer | Denys Vlasenko | 2009-09-27 02:05:45 +0200 |
commit | e74aaf93854b9453b9949954aec77710b257d8b6 (patch) | |
tree | 0be4c4457b9567427706871bfb62fafa296eca19 /shell/hush_test/hush-trap/usage.right | |
parent | 6c750f15180ba51ef37c6cfa381b52e6b05d55aa (diff) | |
download | busybox-e74aaf93854b9453b9949954aec77710b257d8b6.zip busybox-e74aaf93854b9453b9949954aec77710b257d8b6.tar.gz |
ash,hush: make trap output short signal names, without SIG prefix
function old new delta
evalvar 1373 1371 -2
builtin_trap 457 441 -16
trapcmd 260 236 -24
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'shell/hush_test/hush-trap/usage.right')
-rw-r--r-- | shell/hush_test/hush-trap/usage.right | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/shell/hush_test/hush-trap/usage.right b/shell/hush_test/hush-trap/usage.right index 5b90222..c0dbd6c 100644 --- a/shell/hush_test/hush-trap/usage.right +++ b/shell/hush_test/hush-trap/usage.right @@ -2,13 +2,13 @@ ___ ___ ___ trap -- 'a' EXIT -trap -- 'a' SIGINT -trap -- 'a' SIGUSR1 -trap -- 'a' SIGUSR2 +trap -- 'a' INT +trap -- 'a' USR1 +trap -- 'a' USR2 ___ ___ -trap -- 'a' SIGUSR1 -trap -- 'a' SIGUSR2 +trap -- 'a' USR1 +trap -- 'a' USR2 ___ ___ -trap -- 'a' SIGUSR2 +trap -- 'a' USR2 |