2012-10-26 Pedro Alves <palves@redhat.com>

* target.c (target_waitstatus_to_string): Handle
	TARGET_WAITKIND_VFORK_DONE.
This commit is contained in:
Pedro Alves
2012-10-26 16:52:38 +00:00
parent fed708ed1e
commit 87d2d2a446
2 changed files with 7 additions and 0 deletions

View File

@@ -3874,6 +3874,8 @@ target_waitstatus_to_string (const struct target_waitstatus *ws)
return xstrprintf ("%svforked", kind_str);
case TARGET_WAITKIND_EXECD:
return xstrprintf ("%sexecd", kind_str);
case TARGET_WAITKIND_VFORK_DONE:
return xstrprintf ("%svfork-done", kind_str);
case TARGET_WAITKIND_SYSCALL_ENTRY:
return xstrprintf ("%sentered syscall", kind_str);
case TARGET_WAITKIND_SYSCALL_RETURN: