From f62ab876b04f514ed7cd93a4df8cf9c6332abc31 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fredrik=20H=C3=BCbinette=20=28Hubbe=29?= <hubbe@hubbe.net> Date: Fri, 25 Jun 1999 14:34:22 -0700 Subject: [PATCH] more debug Rev: src/signal_handler.c:1.142 --- src/signal_handler.c | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/src/signal_handler.c b/src/signal_handler.c index 25e31cda9a..9c280247ff 100644 --- a/src/signal_handler.c +++ b/src/signal_handler.c @@ -25,7 +25,7 @@ #include "main.h" #include <signal.h> -RCSID("$Id: signal_handler.c,v 1.141 1999/06/22 19:00:11 marcus Exp $"); +RCSID("$Id: signal_handler.c,v 1.142 1999/06/25 21:34:22 hubbe Exp $"); #ifdef HAVE_PASSWD_H # include <passwd.h> @@ -458,7 +458,7 @@ static struct sigdesc signal_desc []={ /* Process stuff */ -#if PIKE_DEBUG +#ifdef PIKE_DEBUG char process_info[65536]; int last_pid_p; @@ -1985,7 +1985,7 @@ void f_create_process(INT32 args) gid_t wanted_gid; int gid_request=0; int keep_signals = 0; - pid_t pid; + pid_t pid=-2; int control_pipe[2]; /* Used for communication with the child. */ char buf[4]; @@ -2320,11 +2320,15 @@ void f_create_process(INT32 args) do { +#ifdef PROC_DEBUG + fprintf("Forking... (pid=%d errno=%d)\n",pid,errno); +#endif #if defined(HAVE_FORK1) && defined(_REENTRANT) pid=fork1(); #else pid=fork(); #endif + }while(pid == -1 && (errno==EAGAIN || errno==EINTR)); UNSET_ONERROR(err); -- GitLab