From: Alexandre Oliva Date: Thu, 10 Feb 2000 16:29:21 +0000 (+0000) Subject: server.c (load_data): Return NULL if the marker line is not found. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=d1922b48994d0d83dea181e0725697291a5208ad;p=gcc.git server.c (load_data): Return NULL if the marker line is not found. * fixinc/server.c (load_data): Return NULL if the marker line is not found. (run_shell): If load_data returns NULL, retry the command once, in a new shell. From-SVN: r31894 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 417fc14dac2..977e894e344 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,5 +1,10 @@ 2000-02-10 Alexandre Oliva + * fixinc/server.c (load_data): Return NULL if the marker line is + not found. + (run_shell): If load_data returns NULL, retry the command once, in + a new shell. + * configure: Rebuilt. 2000-02-09 Bruce Korb diff --git a/gcc/fixinc/server.c b/gcc/fixinc/server.c index 1eacda78f25..676df8cd0f6 100644 --- a/gcc/fixinc/server.c +++ b/gcc/fixinc/server.c @@ -114,6 +114,7 @@ load_data (fp) size_t text_size; char *pz_scan; char z_line[1024]; + t_bool got_done = BOOL_FALSE; text_size = sizeof (z_line) * 2; pz_scan = pz_text = malloc (text_size); @@ -131,7 +132,10 @@ load_data (fp) break; if (strncmp (z_line, z_done, sizeof (z_done) - 1) == 0) - break; + { + got_done = BOOL_TRUE; + break; + } strcpy (pz_scan, z_line); pz_scan += strlen (z_line); @@ -157,7 +161,7 @@ load_data (fp) } alarm (0); - if (read_pipe_timeout) + if (read_pipe_timeout || ! got_done) { free ((void *) pz_text); return (char *) NULL; @@ -255,6 +259,9 @@ char * run_shell (pz_cmd) const char *pz_cmd; { + t_bool retry = BOOL_TRUE; + + do_retry: /* IF the shell server process is not running yet, THEN try to start it. */ if (server_id == NULLPROCESS) @@ -299,9 +306,16 @@ run_shell (pz_cmd) if (pz == (char *) NULL) { + close_server (); + + if (retry) + { + retry = BOOL_FALSE; + goto do_retry; + } + fprintf (stderr, "CLOSING SHELL SERVER - command failure:\n\t%s\n", pz_cmd); - close_server (); pz = (char *) malloc (1); if (pz != (char *) NULL) *pz = '\0';