550bf5b4a4
function old new delta xfunc_has_died - 21 +21 sleep_much - 12 +12 sleep10 - 9 +9 die_func - 4 +4 fflush_stdout_and_exit 35 36 +1 builtin_type 121 119 -2 die_sleep 4 - -4 xfunc_die 60 24 -36 hush_main 1128 1011 -117 die_jmp 156 - -156 ------------------------------------------------------------------------------ (add/remove: 4/2 grow/shrink: 1/3 up/down: 47/-315) Total: -268 bytes text data bss dec hex filename 939992 992 17652 958636 ea0ac busybox_old 939880 992 17496 958368 e9fa0 busybox_unstripped Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
25 lines
599 B
C
25 lines
599 B
C
/* vi: set sw=4 ts=4: */
|
|
/*
|
|
* fflush_stdout_and_exit implementation for busybox
|
|
*
|
|
* Copyright (C) 2003 Manuel Novoa III <mjn3@codepoet.org>
|
|
*
|
|
* Licensed under GPLv2 or later, see file LICENSE in this source tree.
|
|
*/
|
|
|
|
/* Attempt to fflush(stdout), and exit with an error code if stdout is
|
|
* in an error state.
|
|
*/
|
|
|
|
#include "libbb.h"
|
|
|
|
void FAST_FUNC fflush_stdout_and_exit(int retval)
|
|
{
|
|
xfunc_error_retval = retval;
|
|
if (fflush(stdout))
|
|
bb_perror_msg_and_die(bb_msg_standard_output);
|
|
/* In case we are in NOFORK applet. Do not exit() directly,
|
|
* but use xfunc_die() */
|
|
xfunc_die();
|
|
}
|