diff options
author | Simon Marchi <simon.marchi@ericsson.com> | 2014-09-29 17:33:09 -0400 |
---|---|---|
committer | Simon Marchi <simon.marchi@ericsson.com> | 2014-10-01 10:20:49 -0400 |
commit | 2ddf4301102f7a78a03bccf86051a63111b1fcc1 (patch) | |
tree | 3b82b7ae469e0201f1d6008bac6e9c7570a4729d /gdb/inferior.c | |
parent | 5fdeec1db01500cda1fa46be582fecc69ed1d1a3 (diff) | |
download | gdb-2ddf4301102f7a78a03bccf86051a63111b1fcc1.zip gdb-2ddf4301102f7a78a03bccf86051a63111b1fcc1.tar.gz gdb-2ddf4301102f7a78a03bccf86051a63111b1fcc1.tar.bz2 |
Exit code of exited inferiors in -list-thread-groups
Don't reset the exit code at inferior exit and print it in
-list-thread-groups.
gdb/ChangeLog:
* NEWS: Announce new exit-code field in -list-thread-groups
output.
* inferior.c (exit_inferior_1): Don't clear exit code.
(inferior_appeared): Clear exit code.
* mi/mi-main.c (print_one_inferior): Add printing of the exit
code.
gdb/testsuite/ChangeLog:
* gdb.mi/mi-exit-code.exp: New file.
* gdb.mi/mi-exit-code.c: New file.
gdb/doc/ChangeLog:
* gdb.texinfo (Miscellaneous gdb/mi Commands): Document new
exit-code field in -list-thread-groups output.
Diffstat (limited to 'gdb/inferior.c')
-rw-r--r-- | gdb/inferior.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/inferior.c b/gdb/inferior.c index 23da0c7..66401ab 100644 --- a/gdb/inferior.c +++ b/gdb/inferior.c @@ -275,8 +275,6 @@ exit_inferior_1 (struct inferior *inftoex, int silent) inf->vfork_child = NULL; } - inf->has_exit_code = 0; - inf->exit_code = 0; inf->pending_detach = 0; } @@ -322,6 +320,8 @@ void inferior_appeared (struct inferior *inf, int pid) { inf->pid = pid; + inf->has_exit_code = 0; + inf->exit_code = 0; observer_notify_inferior_appeared (inf); } |