X-Git-Url: https://diplodocus.org/git/nmh/blobdiff_plain/8a14191c0a0ad15bb8f35b49748c75c1e0a8c2f4..0e593b90e45687680b8ea9eb6c7643b44abde0fb:/sbr/push.c diff --git a/sbr/push.c b/sbr/push.c index 03e8a456..5417f390 100644 --- a/sbr/push.c +++ b/sbr/push.c @@ -1,25 +1,24 @@ - -/* - * push.c -- push a fork into the background +/* push.c -- push a fork into the background * * This code is Copyright (c) 2002, by the authors of nmh. See the * COPYRIGHT file in the root directory of the nmh distribution for * complete copyright information. */ -#include -#include +#include "h/mh.h" +#include "push.h" +#include "error.h" +#include "h/signals.h" +#include "h/done.h" +#include "m_mktemp.h" void push(void) { pid_t pid; - int i; - - for (i = 0; (pid = fork()) == -1 && i < 5; i++) - sleep (5); + pid = fork(); switch (pid) { case -1: /* fork error */ @@ -53,4 +52,3 @@ push(void) done (0); } } -