diff options
author | Tankut Baris Aktemur <tankut.baris.aktemur@intel.com> | 2021-04-22 17:22:39 +0200 |
---|---|---|
committer | Tankut Baris Aktemur <tankut.baris.aktemur@intel.com> | 2021-04-22 17:22:39 +0200 |
commit | 1194676e0be8d28a2ed631fe2b8d560409240ff0 (patch) | |
tree | 8119152d35720a051ef56d12f4971f822fb92910 /gdb/inferior.h | |
parent | 35682f0a64145893cb1f3c0f6df0cfec7330b823 (diff) | |
download | binutils-1194676e0be8d28a2ed631fe2b8d560409240ff0.zip binutils-1194676e0be8d28a2ed631fe2b8d560409240ff0.tar.gz binutils-1194676e0be8d28a2ed631fe2b8d560409240ff0.tar.bz2 |
gdb/continuations: do minor cleanup
Inferior continuations are no longer used by the until and finish
command. It is used only by the attach command and the remote target
upon detecting new inferiors. Update the comment accordingly.
Also update another comment about non-existent thread continuations and
remove an unused #include.
gdb/ChangeLog:
2021-04-22 Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>
* continuations.h: Update the general comment.
* inferior.h (class inferior) <continuations>: Update the comment.
* interps.c: Do not include "continuations.h".
Diffstat (limited to 'gdb/inferior.h')
-rw-r--r-- | gdb/inferior.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/gdb/inferior.h b/gdb/inferior.h index 66fc180..9ca510e 100644 --- a/gdb/inferior.h +++ b/gdb/inferior.h @@ -509,8 +509,7 @@ public: bool detaching = false; /* What is left to do for an execution command after any thread of - this inferior stops. For continuations associated with a - specific thread, see `struct thread_info'. */ + this inferior stops. */ continuation *continuations = NULL; /* True if setup_inferior wasn't called for this inferior yet. |