2007-07-27 Michael Snyder <michael.snyder@access-company.com>

* server.c (main): Check for inferior exit before main loop.
This commit is contained in:
Michael Snyder 2007-07-27 18:44:40 +00:00
parent aba471f522
commit c588c53caf
2 changed files with 17 additions and 2 deletions

View File

@ -1,3 +1,7 @@
2007-07-27 Michael Snyder <michael.snyder@access-company.com>
* server.c (main): Check for inferior exit before main loop.
2007-07-18 Pedro Alves <pedro_alves@portugalmail.pt>
* remote-utils.c (remote_open): Set SO_KEEPALIVE on remote_desc

View File

@ -80,6 +80,8 @@ start_inferior (char *argv[], char *statusptr)
signal_pid = create_inferior (argv[0], argv);
/* FIXME: we don't actually know at this point that the create
actually succeeded. We won't know that until we wait. */
fprintf (stderr, "Process %s created; pid = %ld\n", argv[0],
signal_pid);
fflush (stderr);
@ -93,7 +95,8 @@ start_inferior (char *argv[], char *statusptr)
atexit (restore_old_foreground_pgrp);
#endif
/* Wait till we are at 1st instruction in program, return signal number. */
/* Wait till we are at 1st instruction in program, return signal
number (assuming success). */
return mywait (statusptr, 0);
}
@ -899,7 +902,9 @@ main (int argc, char *argv[])
/* Wait till we are at first instruction in program. */
signal = start_inferior (&argv[2], &status);
/* We are now stopped at the first instruction of the target process */
/* We are now (hopefully) stopped at the first instruction of
the target process. This assumes that the target process was
successfully created. */
/* Don't report shared library events on the initial connection,
even if some libraries are preloaded. */
@ -925,6 +930,12 @@ main (int argc, char *argv[])
exit (1);
}
if (status == 'W' || status == 'X')
{
fprintf (stderr, "No inferior, GDBserver exiting.\n");
exit (1);
}
while (1)
{
remote_open (argv[1]);