1 /* vi: set sw=4 ts=4: */
5 * Copyright (C) 2008 by Denys Vlasenko <vda.linux@googlemail.com>
7 * Licensed under GPLv2, see file LICENSE in this tarball for details.
10 /* Keeping it separate allows to NOT suck in stdio for VERY small applets.
11 * Try building busybox with only "true" enabled... */
16 #if ENABLE_FEATURE_PREFER_APPLETS || ENABLE_HUSH
20 void FAST_FUNC xfunc_die(void)
23 if ((ENABLE_FEATURE_PREFER_APPLETS || ENABLE_HUSH)
26 /* Special case. We arrive here if NOFORK applet
27 * calls xfunc, which then decides to die.
28 * We don't die, but jump instead back to caller.
29 * NOFORK applets still cannot carelessly call xfuncs:
31 * q = xmalloc(10); // BUG! if this dies, we leak p!
33 /* -2222 means "zero" (longjmp can't pass 0)
34 * run_nofork_applet() catches -2222. */
35 longjmp(die_jmp, xfunc_error_retval ? xfunc_error_retval : -2222);
39 exit(xfunc_error_retval);