From 96e5f1615098b7cf7a528b03c097e81ee807b115 Mon Sep 17 00:00:00 2001 From: Jim Kingdon Date: Fri, 31 Dec 1993 03:05:15 +0000 Subject: [PATCH] * remote-mips.c (mips_error): New function. * remote-mips.c: Use it instead of error() most places. * remote-mips.c (mips_receive_packet): New arg throw_error. (mips_initialize): Use it not catch_errors. * defs.h: Declare error_pre_print and warning_pre_print here... * main.c: ...not here. --- gdb/ChangeLog | 4 ++++ gdb/main.c | 8 ------- gdb/remote-mips.c | 67 ++++++++++++++++++++++++++++++++++++++----------------- 3 files changed, 50 insertions(+), 29 deletions(-) diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 33a9ed3..f82e979 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -4,6 +4,10 @@ Thu Dec 30 10:16:54 1993 Jim Kingdon (kingdon@lioth.cygnus.com) * remote-mips.c (mips_error): New function. * remote-mips.c: Use it instead of error() most places. + * remote-mips.c (mips_receive_packet): New arg throw_error. + (mips_initialize): Use it not catch_errors. + * defs.h: Declare error_pre_print and warning_pre_print here... + * main.c: ...not here. * breakpoint.c (breakpoint_chain): Make static. * breakpoint.c, breakpoint.h (frame_in_dummy): New function. diff --git a/gdb/main.c b/gdb/main.c index 3dce043..c5cfa38 100644 --- a/gdb/main.c +++ b/gdb/main.c @@ -186,14 +186,6 @@ extern char *host_canonical; extern char *target_canonical; -/* Message to be printed before the error message, when an error occurs. */ - -extern char *error_pre_print; - -/* Message to be printed before the warning message, when a warning occurs. */ - -extern char *warning_pre_print; - extern char lang_frame_mismatch_warn[]; /* language.c */ /* Flag for whether we want all the "from_tty" gubbish printed. */ diff --git a/gdb/remote-mips.c b/gdb/remote-mips.c index 1c0228b..a46b450 100644 --- a/gdb/remote-mips.c +++ b/gdb/remote-mips.c @@ -31,6 +31,7 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ #include "remote-utils.h" #include +#include /* Prototypes for local functions. */ @@ -52,8 +53,7 @@ static int mips_cksum PARAMS ((const unsigned char *hdr, static void mips_send_packet PARAMS ((const char *s, int get_ack)); -static int -mips_receive_packet PARAMS ((char *buff)); +static int mips_receive_packet PARAMS ((char *buff, int)); static int mips_request PARAMS ((char cmd, unsigned int addr, unsigned int data, @@ -303,8 +303,13 @@ mips_error (va_alist) fprintf_filtered (gdb_stderr, "\n"); va_end (args); - /* We probably should print "ending remote debugging" here, but that would - appear to be a problem for mips_initialize and its catch_errors. */ + /* Clean up in such a way that mips_close won't try to talk to the + board (it almost surely won't work since we weren't able to talk to + it). */ + mips_is_open = 0; + SERIAL_CLOSE (mips_desc); + + printf_unfiltered ("Ending remote MIPS debugging.\n"); target_mourn_inferior (); return_to_top_level (RETURN_ERROR); @@ -629,11 +634,13 @@ mips_send_packet (s, get_ack) should be DATA_MAXLEN + 1 bytes). The protocol documentation implies that only the sender retransmits packets, so this code just waits silently for a packet. It returns the length of the received - packet. */ + packet. If THROW_ERROR is nonzero, call error() on errors. If not, + don't print an error message and return -1. */ static int -mips_receive_packet (buff) +mips_receive_packet (buff, throw_error) char *buff; + int throw_error; { int ch; int garbage; @@ -651,7 +658,12 @@ mips_receive_packet (buff) int err; if (mips_receive_header (hdr, &garbage, ch, mips_receive_wait) != 0) - mips_error ("Timed out waiting for remote packet"); + { + if (throw_error) + mips_error ("Timed out waiting for remote packet"); + else + return -1; + } ch = 0; @@ -685,7 +697,12 @@ mips_receive_packet (buff) break; } if (rch == SERIAL_TIMEOUT) - mips_error ("Timed out waiting for remote packet"); + { + if (throw_error) + mips_error ("Timed out waiting for remote packet"); + else + return -1; + } buff[i] = rch; } @@ -699,7 +716,12 @@ mips_receive_packet (buff) err = mips_receive_trailer (trlr, &garbage, &ch, mips_receive_wait); if (err == -1) - mips_error ("Timed out waiting for packet"); + { + if (throw_error) + mips_error ("Timed out waiting for packet"); + else + return -1; + } if (err == -2) { if (sr_get_debug () > 0) @@ -736,7 +758,12 @@ mips_receive_packet (buff) } if (SERIAL_WRITE (mips_desc, ack, HDR_LENGTH + TRLR_LENGTH) != 0) - mips_error ("write to target failed: %s", safe_strerror (errno)); + { + if (throw_error) + mips_error ("write to target failed: %s", safe_strerror (errno)); + else + return -1; + } } if (sr_get_debug () > 0) @@ -767,7 +794,12 @@ mips_receive_packet (buff) } if (SERIAL_WRITE (mips_desc, ack, HDR_LENGTH + TRLR_LENGTH) != 0) - mips_error ("write to target failed: %s", safe_strerror (errno)); + { + if (throw_error) + mips_error ("write to target failed: %s", safe_strerror (errno)); + else + return -1; + } return len; } @@ -828,7 +860,7 @@ mips_request (cmd, addr, data, perr) mips_need_reply = 0; - len = mips_receive_packet (buff); + len = mips_receive_packet (buff, 1); buff[len] = '\0'; if (sscanf (buff, "0x%x %c 0x%x 0x%x", @@ -861,7 +893,6 @@ mips_initialize () { char cr; int hold_wait; - int tries; char buff[DATA_MAXLEN + 1]; int err; @@ -882,17 +913,10 @@ mips_initialize () hold_wait = mips_receive_wait; mips_receive_wait = 3; - tries = 0; - while (catch_errors (mips_receive_packet, buff, (char *) NULL, - RETURN_MASK_ALL) - == 0) + if (mips_receive_packet (buff, 0) < 0) { char cc; - if (tries > 0) - mips_error ("Could not connect to target"); - ++tries; - /* We did not receive the packet we expected; try resetting the board and trying again. */ printf_filtered ("Failed to initialize; trying to reset board\n"); @@ -904,6 +928,7 @@ mips_initialize () cr = '\r'; SERIAL_WRITE (mips_desc, &cr, 1); } + mips_receive_packet (buff, 1); mips_receive_wait = hold_wait; mips_initializing = 0; -- 2.7.4