audit small applets and mark some of them as NOFORK.
[platform/upstream/busybox.git] / libbb / fflush_stdout_and_exit.c
1 /* vi: set sw=4 ts=4: */
2 /*
3  * fflush_stdout_and_exit implementation for busybox
4  *
5  * Copyright (C) 2003  Manuel Novoa III  <mjn3@codepoet.org>
6  *
7  * Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
8  */
9
10 /* Attempt to fflush(stdout), and exit with an error code if stdout is
11  * in an error state.
12  */
13
14 #include "libbb.h"
15
16 // TODO: make it safe to call from NOFORK applets
17 // Currently, it can exit(0). Even if it is made to do longjmp trick
18 // (see sleep_and_die internals), zero cannot be passed thru this way!
19
20 void fflush_stdout_and_exit(int retval)
21 {
22         if (fflush(stdout))
23                 sleep_and_die();
24         exit(retval);
25 }