diff options
author | Doug Evans <dje@google.com> | 2015-06-23 11:36:49 -0700 |
---|---|---|
committer | Doug Evans <dje@google.com> | 2015-06-23 11:36:49 -0700 |
commit | a38fe4feddd68b9c0aa082dd078c668ca9f06aae (patch) | |
tree | bb29bb372cfa305c216414dccc72f6dc274a8b54 /gdb/inferior.h | |
parent | 8e6500c55ef0b9413ab16e384dbfcaa238bcd420 (diff) | |
download | gdb-a38fe4feddd68b9c0aa082dd078c668ca9f06aae.zip gdb-a38fe4feddd68b9c0aa082dd078c668ca9f06aae.tar.gz gdb-a38fe4feddd68b9c0aa082dd078c668ca9f06aae.tar.bz2 |
inferior.h (struct inferior_suspend_state): Delete, unused.
gdb/ChangeLog:
* inferior.h (struct inferior_suspend_state): Delete, unused.
All references deleted.
Diffstat (limited to 'gdb/inferior.h')
-rw-r--r-- | gdb/inferior.h | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/gdb/inferior.h b/gdb/inferior.h index 0d242fe..2054a2a 100644 --- a/gdb/inferior.h +++ b/gdb/inferior.h @@ -276,16 +276,6 @@ struct inferior_control_state enum stop_kind stop_soon; }; -/* Inferior process specific part of `struct infcall_suspend_state'. - - Inferior thread counterpart is `struct thread_suspend_state'. */ - -#if 0 /* Currently unused and empty structures are not valid C. */ -struct inferior_suspend_state -{ -}; -#endif - /* GDB represents the state of each program execution with an object called an inferior. An inferior typically corresponds to a process but is more general and applies also to targets that do not have a @@ -314,12 +304,6 @@ struct inferior See `struct inferior_control_state'. */ struct inferior_control_state control; - /* State of inferior process to restore after GDB is done with an inferior - call. See `struct inferior_suspend_state'. */ -#if 0 /* Currently unused and empty structures are not valid C. */ - struct inferior_suspend_state suspend; -#endif - /* True if this was an auto-created inferior, e.g. created from following a fork; false, if this inferior was manually added by the user, and we should not attempt to prune it |