*: introduce and use xfork()

function                                             old     new   delta
xfork                                                  -      20     +20
msh_main                                            1377    1380      +3
mod_process                                          455     446      -9
forkexit_or_rexec                                     30      17     -13
expand_variables                                    1434    1421     -13
open_transformer                                      91      76     -15
------------------------------------------------------------------------------
(add/remove: 1/0 grow/shrink: 1/4 up/down: 23/-50)            Total: -27 bytes
This commit is contained in:
Denis Vlasenko 2008-07-01 11:11:24 +00:00
parent 49b5c516b5
commit 58d60c3333
7 changed files with 19 additions and 18 deletions

View File

@ -20,14 +20,7 @@ int FAST_FUNC open_transformer(int src_fd,
xpiped_pair(fd_pipe); xpiped_pair(fd_pipe);
#if BB_MMU pid = BB_MMU ? xfork() : xvfork();
pid = fork();
if (pid == -1)
bb_perror_msg_and_die("can't fork");
#else
pid = xvfork();
#endif
if (pid == 0) { if (pid == 0) {
/* child process */ /* child process */
close(fd_pipe.rd); /* We don't want to read from the parent */ close(fd_pipe.rd); /* We don't want to read from the parent */

View File

@ -719,6 +719,9 @@ int bb_execvp(const char *file, char *const argv[]) FAST_FUNC;
#define BB_EXECLP(prog,cmd,...) execlp(prog,cmd, __VA_ARGS__) #define BB_EXECLP(prog,cmd,...) execlp(prog,cmd, __VA_ARGS__)
#endif #endif
#if BB_MMU
pid_t xfork(void) FAST_FUNC;
#endif
pid_t xvfork(void) FAST_FUNC; pid_t xvfork(void) FAST_FUNC;
/* NOMMU friendy fork+exec */ /* NOMMU friendy fork+exec */

View File

@ -238,9 +238,7 @@ void FAST_FUNC forkexit_or_rexec(char **argv)
void FAST_FUNC forkexit_or_rexec(void) void FAST_FUNC forkexit_or_rexec(void)
{ {
pid_t pid; pid_t pid;
pid = fork(); pid = xfork();
if (pid < 0) /* wtf? */
bb_perror_msg_and_die("fork");
if (pid) /* parent */ if (pid) /* parent */
exit(EXIT_SUCCESS); exit(EXIT_SUCCESS);
/* child */ /* child */

View File

@ -16,3 +16,13 @@ pid_t FAST_FUNC xvfork(void)
bb_perror_msg_and_die("vfork"); bb_perror_msg_and_die("vfork");
return pid; return pid;
} }
#if BB_MMU
pid_t FAST_FUNC xfork(void)
{
pid_t pid = fork();
if (pid < 0)
bb_perror_msg_and_die("vfork" + 1);
return pid;
}
#endif

View File

@ -1303,7 +1303,7 @@ int inetd_main(int argc ATTRIBUTE_UNUSED, char **argv)
pid = vfork(); pid = vfork();
if (pid < 0) { /* fork error */ if (pid < 0) { /* fork error */
bb_perror_msg("fork"); bb_perror_msg(BB_MMU ? "vfork" + 1 : "vfork");
sleep(1); sleep(1);
restore_sigmask(&omask); restore_sigmask(&omask);
maybe_close(accepted_fd); maybe_close(accepted_fd);

View File

@ -1902,7 +1902,7 @@ static int run_pipe(struct pipe *pi)
#endif #endif
if (child->pid < 0) { /* [v]fork failed */ if (child->pid < 0) { /* [v]fork failed */
/* Clearly indicate, was it fork or vfork */ /* Clearly indicate, was it fork or vfork */
bb_perror_msg(BB_MMU ? "fork" : "vfork"); bb_perror_msg(BB_MMU ? "vfork" + 1 : "vfork");
} else { } else {
pi->alive_progs++; pi->alive_progs++;
#if ENABLE_HUSH_JOB #if ENABLE_HUSH_JOB
@ -3096,11 +3096,7 @@ static FILE *generate_stream_from_list(struct pipe *head)
* huge=`cat TESTFILE` # will block here forever * huge=`cat TESTFILE` # will block here forever
* echo OK * echo OK
*/ */
pid = BB_MMU ? fork() : xvfork(); pid = BB_MMU ? xfork() : xvfork();
#if BB_MMU
if (pid < 0)
bb_perror_msg_and_die("fork");
#endif
if (pid == 0) { /* child */ if (pid == 0) { /* child */
if (ENABLE_HUSH_JOB) if (ENABLE_HUSH_JOB)
die_sleep = 0; /* let nofork's xfuncs die */ die_sleep = 0; /* let nofork's xfuncs die */

View File

@ -890,6 +890,7 @@ get_mountport(struct pmap *pm_mnt,
} }
#if BB_MMU #if BB_MMU
/* Unlike bb_daemonize(), parent does NOT exit here, but returns 0 */
static int daemonize(void) static int daemonize(void)
{ {
int fd; int fd;