Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.busybox.net/busybox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/procps
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2023-04-03 20:54:42 +0300
committerDenys Vlasenko <vda.linux@googlemail.com>2023-04-03 20:54:42 +0300
commit05f2bedaebd694605abd1f199fc25d93ad73840b (patch)
treea025f39e5cc6f548d3240a7a3fcd91a7752a15ff /procps
parentff8fde111e11e973b269467dd86f235a27f653df (diff)
ash: sleep builtin with no arguments should not exit
function old new delta sleep_main 116 143 +27 .rodata 105245 105268 +23 ------------------------------------------------------------------------------ (add/remove: 0/0 grow/shrink: 2/0 up/down: 50/0) Total: 50 bytes Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'procps')
-rw-r--r--procps/kill.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/procps/kill.c b/procps/kill.c
index 8f10e21ab..208efebde 100644
--- a/procps/kill.c
+++ b/procps/kill.c
@@ -85,8 +85,8 @@
* This brings some complications:
*
* + we can't use xfunc here
- * + we can't use applet_name
* + we can't use bb_show_usage
+ * + applet_name can be the name of the shell
* (doesn't apply for killall[5], still should be careful b/c NOFORK)
*
* kill %n gets translated into kill ' -<process group>' by shell (note space!)