summaryrefslogtreecommitdiff
path: root/gdb/inferior.h
diff options
context:
space:
mode:
authorTom Tromey <tromey@redhat.com>2011-06-03 15:32:44 +0000
committerTom Tromey <tromey@redhat.com>2011-06-03 15:32:44 +0000
commit69daa0ca6b3aef6e2f6b6cc941ce790001c8f8c2 (patch)
tree84f6403fa767313ae24a1ce22393c77e6a26b66f /gdb/inferior.h
parent00a69a4bc9472e28ea8a13e23af8b9e59f955c43 (diff)
downloadgdb-69daa0ca6b3aef6e2f6b6cc941ce790001c8f8c2.tar.gz
gdb
* python/py-inferior.c (python_inferior_exit): Use inferior's exit code fields. * python/py-exitedevent.c (create_exited_event_object): Change type of 'exit_code'. Optionally add exit_code attribute. (emit_exited_event): Change type of 'exit_code'. * python/py-event.h (emit_exited_event): Update. * mi/mi-interp.c (mi_inferior_exit): Print exit code. * infrun.c (handle_inferior_event): Set exit code fields on inferior. * inferior.h (struct inferior) <has_exit_code, exit_code>: New fields. * inferior.c (exit_inferior_1): Initialize new fields. gdb/doc * gdb.texinfo (GDB/MI Async Records): Document 'exit-code' field. (Events In Python): Note that exit_code is optional.
Diffstat (limited to 'gdb/inferior.h')
-rw-r--r--gdb/inferior.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/gdb/inferior.h b/gdb/inferior.h
index 9982a7a5379..346bb87a02d 100644
--- a/gdb/inferior.h
+++ b/gdb/inferior.h
@@ -517,6 +517,11 @@ struct inferior
/* Private data used by the target vector implementation. */
struct private_inferior *private;
+ /* HAS_EXIT_CODE is true if the inferior exited with an exit code.
+ In this case, the EXIT_CODE field is also valid. */
+ int has_exit_code;
+ LONGEST exit_code;
+
/* We keep a count of the number of times the user has requested a
particular syscall to be tracked, and pass this information to the
target. This lets capable targets implement filtering directly. */