2011-11-10 Pedro Alves <pedro@codesourcery.com>

gdb/
	* target.c (target_waitstatus_to_string): Handle
	TARGET_WAITKIND_NO_RESUMED.
This commit is contained in:
Pedro Alves 2011-11-10 20:07:51 +00:00
parent 792a023056
commit 0c94aa73a0
2 changed files with 7 additions and 0 deletions

View 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.

View 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);
}