2011-11-10 Pedro Alves <pedro@codesourcery.com>
authorPedro Alves <palves@redhat.com>
Thu, 10 Nov 2011 20:07:51 +0000 (20:07 +0000)
committerPedro Alves <palves@redhat.com>
Thu, 10 Nov 2011 20:07:51 +0000 (20:07 +0000)
gdb/
* target.c (target_waitstatus_to_string): Handle
TARGET_WAITKIND_NO_RESUMED.

gdb/ChangeLog
gdb/target.c

index cc87748..2eef059 100644 (file)
@@ -1,3 +1,8 @@
+2011-11-10  Pedro Alves  <pedro@codesourcery.com>
+
+       * target.c (target_waitstatus_to_string): Handle
+       TARGET_WAITKIND_NO_RESUMED.
+
 2011-11-10  Doug Evans  <dje@google.com>
 
        * python/py-type.c (typy_fields_items): Call check_typedef.
index 41ff6cf..7e0c6ed 100644 (file)
@@ -3443,6 +3443,8 @@ target_waitstatus_to_string (const struct target_waitstatus *ws)
       return xstrprintf ("%signore", kind_str);
     case TARGET_WAITKIND_NO_HISTORY:
       return xstrprintf ("%sno-history", kind_str);
+    case TARGET_WAITKIND_NO_RESUMED:
+      return xstrprintf ("%sno-resumed", kind_str);
     default:
       return xstrprintf ("%sunknown???", kind_str);
     }