GDB (xrefs)
waitstatus.c
Go to the documentation of this file.
1 /* Target waitstatus implementations.
2 
3  Copyright (C) 1990-2018 Free Software Foundation, Inc.
4 
5  This file is part of GDB.
6 
7  This program is free software; you can redistribute it and/or modify
8  it under the terms of the GNU General Public License as published by
9  the Free Software Foundation; either version 3 of the License, or
10  (at your option) any later version.
11 
12  This program is distributed in the hope that it will be useful,
13  but WITHOUT ANY WARRANTY; without even the implied warranty of
14  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15  GNU General Public License for more details.
16 
17  You should have received a copy of the GNU General Public License
18  along with this program. If not, see <http://www.gnu.org/licenses/>. */
19 
20 #include "common-defs.h"
21 #include "waitstatus.h"
22 
23 /* Return a pretty printed form of target_waitstatus.
24  Space for the result is malloc'd, caller must free. */
25 
28 {
29  const char *kind_str = "status->kind = ";
30 
31  switch (ws->kind)
32  {
34  return string_printf ("%sexited, status = %d",
35  kind_str, ws->value.integer);
37  return string_printf ("%sstopped, signal = %s",
38  kind_str,
41  return string_printf ("%ssignalled, signal = %s",
42  kind_str,
45  return string_printf ("%sloaded", kind_str);
47  return string_printf ("%sforked", kind_str);
49  return string_printf ("%svforked", kind_str);
51  return string_printf ("%sexecd", kind_str);
53  return string_printf ("%svfork-done", kind_str);
55  return string_printf ("%sentered syscall", kind_str);
57  return string_printf ("%sexited syscall", kind_str);
59  return string_printf ("%sspurious", kind_str);
61  return string_printf ("%signore", kind_str);
63  return string_printf ("%sno-history", kind_str);
65  return string_printf ("%sno-resumed", kind_str);
67  return string_printf ("%sthread created", kind_str);
69  return string_printf ("%sthread exited, status = %d",
70  kind_str, ws->value.integer);
71  default:
72  return string_printf ("%sunknown???", kind_str);
73  }
74 }
const char * string
Definition: signals.c:50
union target_waitstatus::@174 value
std::string target_waitstatus_to_string(const struct target_waitstatus *ws)
Definition: waitstatus.c:27
enum gdb_signal sig
Definition: waitstatus.h:114
enum target_waitkind kind
Definition: waitstatus.h:106
const char * gdb_signal_to_symbol_string(enum gdb_signal sig)
Definition: signals.c:59
std::string string_printf(const char *fmt,...)
Definition: common-utils.c:150