2010-07-28 Oleg Nesterov <oleg@redhat.com>
authorTom Tromey <tromey@redhat.com>
Wed, 28 Jul 2010 20:20:26 +0000 (20:20 +0000)
committerTom Tromey <tromey@redhat.com>
Wed, 28 Jul 2010 20:20:26 +0000 (20:20 +0000)
* remote.c (readchar): Call pop_target in case of SERIAL_ERROR.

gdb/ChangeLog
gdb/remote.c

index 19e9e06..6fca089 100644 (file)
@@ -1,3 +1,7 @@
+2010-07-28  Oleg Nesterov  <oleg@redhat.com>
+
+       * remote.c (readchar): Call pop_target in case of SERIAL_ERROR.
+
 2010-07-27  Tom Tromey  <tromey@redhat.com>
 
        * dwarf2read.c (dwarf2_const_value_data): Never sign extend.
index e42e57f..d6c20f3 100644 (file)
@@ -6667,7 +6667,8 @@ readchar (int timeout)
       error (_("Remote connection closed"));
       /* no return */
     case SERIAL_ERROR:
-      perror_with_name (_("Remote communication error"));
+      pop_target ();
+      perror_with_name (_("Remote communication error.  Target disconnected."));
       /* no return */
     case SERIAL_TIMEOUT:
       break;