diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2007-04-09 21:35:07 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2007-04-09 21:35:07 +0000 |
commit | 3f3aa2a57dc648ade9083f3b3ad83cce8206b912 (patch) | |
tree | d5c648f583bb2edef25f05c2bed303df3d1a61f6 /applets | |
parent | cd7001f7055c3fc2d6298ab9e3befe91e951c652 (diff) | |
download | busybox-w32-3f3aa2a57dc648ade9083f3b3ad83cce8206b912.tar.gz busybox-w32-3f3aa2a57dc648ade9083f3b3ad83cce8206b912.tar.bz2 busybox-w32-3f3aa2a57dc648ade9083f3b3ad83cce8206b912.zip |
make xfunctions optionally longjump instead of exit.
use it for making NOFORK more practical.
touch: make it a NOFORK applet
Diffstat (limited to 'applets')
-rw-r--r-- | applets/applets.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/applets/applets.c b/applets/applets.c index db4ee482e..9218b40e4 100644 --- a/applets/applets.c +++ b/applets/applets.c | |||
@@ -462,7 +462,7 @@ void bb_show_usage(void) | |||
462 | applet_name, usage_string); | 462 | applet_name, usage_string); |
463 | } | 463 | } |
464 | 464 | ||
465 | exit(xfunc_error_retval); | 465 | sleep_and_die(); |
466 | } | 466 | } |
467 | 467 | ||
468 | 468 | ||