diff options
author | Tankut Baris Aktemur <tankut.baris.aktemur@intel.com> | 2020-05-14 13:59:54 +0200 |
---|---|---|
committer | Tankut Baris Aktemur <tankut.baris.aktemur@intel.com> | 2020-05-14 13:59:54 +0200 |
commit | d890404b63b8a0b6c28212388f21421d029f6ad2 (patch) | |
tree | c9190f12e69c9911b1225f279e918288f2fb352f /gdb/process-stratum-target.h | |
parent | 293b3ebcba93960b4e39b27eeddaa4a01f024d0c (diff) | |
download | gdb-d890404b63b8a0b6c28212388f21421d029f6ad2.zip gdb-d890404b63b8a0b6c28212388f21421d029f6ad2.tar.gz gdb-d890404b63b8a0b6c28212388f21421d029f6ad2.tar.bz2 |
gdb: introduce 'all_non_exited_process_targets' and 'switch_to_target_no_thread'
Introduce two new convenience functions:
1. all_non_exited_process_targets: returns a collection of all process
stratum targets that have non-exited inferiors on them. Useful for
iterating targets.
2. switch_to_target_no_thread: switch the context to the first
inferior of the given target, and to no selected thread.
gdb/ChangeLog:
2020-05-14 Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>
* process-stratum-target.h: Include <set>.
(all_non_exited_process_targets, switch_to_target_no_thread): New
function declarations.
* process-stratum-target.c (all_non_exited_process_targets)
(switch_to_target_no_thread): New function implementations.
Diffstat (limited to 'gdb/process-stratum-target.h')
-rw-r--r-- | gdb/process-stratum-target.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/gdb/process-stratum-target.h b/gdb/process-stratum-target.h index 1be0210..7e7905b 100644 --- a/gdb/process-stratum-target.h +++ b/gdb/process-stratum-target.h @@ -21,6 +21,7 @@ #define PROCESS_STRATUM_TARGET_H #include "target.h" +#include <set> /* Abstract base class inherited by all process_stratum targets. */ @@ -82,4 +83,13 @@ as_process_stratum_target (target_ops *target) return static_cast<process_stratum_target *> (target); } +/* Return a collection of targets that have non-exited inferiors. */ + +extern std::set<process_stratum_target *> all_non_exited_process_targets (); + +/* Switch to the first inferior (and program space) of TARGET, and + switch to no thread selected. */ + +extern void switch_to_target_no_thread (process_stratum_target *target); + #endif /* !defined (PROCESS_STRATUM_TARGET_H) */ |