X-Git-Url: https://diplodocus.org/git/nmh/blobdiff_plain/6c42153ad9362cc676ea66563bf400d7511b3b68..94187a80bd60baab4b9c4b949ad820d730578123:/sbr/push.c diff --git a/sbr/push.c b/sbr/push.c index 82b85b08..4576c8e9 100644 --- a/sbr/push.c +++ b/sbr/push.c @@ -1,8 +1,4 @@ - -/* - * push.c -- push a fork into the background - * - * $Id$ +/* 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 @@ -11,22 +7,20 @@ #include #include -#include +#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 */ - advise (NULL, "unable to fork, so can't push..."); + inform("unable to fork, so can't push..."); break; case 0: @@ -40,8 +34,15 @@ push(void) SIGNAL (SIGTTIN, SIG_IGN); SIGNAL (SIGTTOU, SIG_IGN); #endif - freopen ("/dev/null", "r", stdin); - freopen ("/dev/null", "w", stdout); + + unregister_for_removal(0); + + if (freopen ("/dev/null", "r", stdin) == NULL) { + advise ("stdin", "freopen"); + } + if (freopen ("/dev/null", "w", stdout) == NULL) { + advise ("stdout", "freopen"); + } break; default: @@ -49,4 +50,3 @@ push(void) done (0); } } -