Fix test-cp-name-parser build, unused variable
[deliverable/binutils-gdb.git] / gdb / inferior.h
CommitLineData
c906108c
SS
1/* Variables that describe the inferior process running under GDB:
2 Where it is, why it stopped, and how to step it.
1bac305b 3
42a4f53d 4 Copyright (C) 1986-2019 Free Software Foundation, Inc.
c906108c 5
c5aa993b 6 This file is part of GDB.
c906108c 7
c5aa993b
JM
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
a9762ec7 10 the Free Software Foundation; either version 3 of the License, or
c5aa993b 11 (at your option) any later version.
c906108c 12
c5aa993b
JM
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
c906108c 17
c5aa993b 18 You should have received a copy of the GNU General Public License
a9762ec7 19 along with this program. If not, see <http://www.gnu.org/licenses/>. */
c906108c
SS
20
21#if !defined (INFERIOR_H)
22#define INFERIOR_H 1
23
da3331ec
AC
24struct target_waitstatus;
25struct frame_info;
26struct ui_file;
27struct type;
67a2b77e 28struct gdbarch;
72cec141 29struct regcache;
b77209e0 30struct ui_out;
7e1789f5 31struct terminal_info;
6ecd4729 32struct target_desc_info;
0550c955 33struct continuation;
3a3fd0fd 34struct inferior;
00431a78 35struct thread_info;
67a2b77e 36
c906108c
SS
37/* For bpstat. */
38#include "breakpoint.h"
39
2ea28649 40/* For enum gdb_signal. */
c906108c
SS
41#include "target.h"
42
aa0cd9c1
AC
43/* For struct frame_id. */
44#include "frame.h"
45
9a6c7d9c 46/* For gdb_environ. */
0747795c 47#include "common/environ.h"
9a6c7d9c 48
6c95b8df 49#include "progspace.h"
8e260fc0 50#include "registry.h"
6c95b8df 51
b15cc25c 52#include "symfile-add-flags.h"
3a3fd0fd 53#include "common/refcounted-object.h"
5419bdae 54#include "common/forward-scope-exit.h"
b15cc25c 55
0747795c 56#include "common/common-inferior.h"
08036331 57#include "gdbthread.h"
2090129c 58
16c381f0
JK
59struct infcall_suspend_state;
60struct infcall_control_state;
7a292a7a 61
16c381f0
JK
62extern void restore_infcall_suspend_state (struct infcall_suspend_state *);
63extern void restore_infcall_control_state (struct infcall_control_state *);
b89667eb 64
c7c4d3fa
TT
65/* A deleter for infcall_suspend_state that calls
66 restore_infcall_suspend_state. */
67struct infcall_suspend_state_deleter
68{
69 void operator() (struct infcall_suspend_state *state) const
70 {
71 restore_infcall_suspend_state (state);
72 }
73};
74
75/* A unique_ptr specialization for infcall_suspend_state. */
76typedef std::unique_ptr<infcall_suspend_state, infcall_suspend_state_deleter>
77 infcall_suspend_state_up;
78
cb524840
TT
79extern infcall_suspend_state_up save_infcall_suspend_state ();
80
c7c4d3fa
TT
81/* A deleter for infcall_control_state that calls
82 restore_infcall_control_state. */
83struct infcall_control_state_deleter
84{
85 void operator() (struct infcall_control_state *state) const
86 {
87 restore_infcall_control_state (state);
88 }
89};
90
91/* A unique_ptr specialization for infcall_control_state. */
92typedef std::unique_ptr<infcall_control_state, infcall_control_state_deleter>
93 infcall_control_state_up;
b89667eb 94
cb524840
TT
95extern infcall_control_state_up save_infcall_control_state ();
96
16c381f0
JK
97extern void discard_infcall_suspend_state (struct infcall_suspend_state *);
98extern void discard_infcall_control_state (struct infcall_control_state *);
7a292a7a 99
daf6667d 100extern readonly_detached_regcache *
16c381f0 101 get_infcall_suspend_state_regcache (struct infcall_suspend_state *);
b89667eb 102
a14ed312 103extern void set_sigint_trap (void);
c906108c 104
a14ed312 105extern void clear_sigint_trap (void);
c906108c 106
3cb3b8df 107/* Set/get file name for default use for standard in/out in the inferior. */
c906108c 108
3cb3b8df
BR
109extern void set_inferior_io_terminal (const char *terminal_name);
110extern const char *get_inferior_io_terminal (void);
c906108c 111
39f77062 112/* Collected pid, tid, etc. of the debugged inferior. When there's
e99b03dc 113 no inferior, inferior_ptid.pid () will be 0. */
c906108c 114
39f77062 115extern ptid_t inferior_ptid;
c906108c 116
a14ed312 117extern void generic_mourn_inferior (void);
c906108c 118
9898f801
UW
119extern CORE_ADDR unsigned_pointer_to_address (struct gdbarch *gdbarch,
120 struct type *type,
b60c417a 121 const gdb_byte *buf);
9898f801
UW
122extern void unsigned_address_to_pointer (struct gdbarch *gdbarch,
123 struct type *type, gdb_byte *buf,
ac2e2ef7 124 CORE_ADDR addr);
9898f801
UW
125extern CORE_ADDR signed_pointer_to_address (struct gdbarch *gdbarch,
126 struct type *type,
b60c417a 127 const gdb_byte *buf);
9898f801
UW
128extern void address_to_signed_pointer (struct gdbarch *gdbarch,
129 struct type *type, gdb_byte *buf,
ac2e2ef7 130 CORE_ADDR addr);
4478b372 131
a14ed312 132extern void reopen_exec_file (void);
c906108c 133
c906108c
SS
134/* From misc files */
135
0ab7a791
AC
136extern void default_print_registers_info (struct gdbarch *gdbarch,
137 struct ui_file *file,
138 struct frame_info *frame,
139 int regnum, int all);
666e11c5 140
cc86d1cb
YQ
141/* Default implementation of gdbarch_print_float_info. Print
142 the values of all floating point registers. */
143
144extern void default_print_float_info (struct gdbarch *gdbarch,
145 struct ui_file *file,
146 struct frame_info *frame,
147 const char *args);
148
0a4f40a2 149extern void child_terminal_info (struct target_ops *self, const char *, int);
c906108c 150
11db9430 151extern void info_terminal_command (char *, int);
c906108c 152
d6b64346
PA
153extern void child_terminal_ours (struct target_ops *self);
154
155extern void child_terminal_ours_for_output (struct target_ops *self);
c906108c 156
d6b64346 157extern void child_terminal_inferior (struct target_ops *self);
c906108c 158
e671cd59
PA
159extern void child_terminal_save_inferior (struct target_ops *self);
160
d6b64346 161extern void child_terminal_init (struct target_ops *self);
c906108c 162
d6b64346 163extern void child_terminal_init_with_pgrp (int pgrp);
c906108c 164
e671cd59
PA
165extern void child_pass_ctrlc (struct target_ops *self);
166
167extern void child_interrupt (struct target_ops *self);
168
c906108c
SS
169/* From fork-child.c */
170
2090129c
SDJ
171/* Helper function to call STARTUP_INFERIOR with PID and NUM_TRAPS.
172 This function already calls set_executing. Return the ptid_t from
173 STARTUP_INFERIOR. */
174extern ptid_t gdb_startup_inferior (pid_t pid, int num_traps);
c906108c 175
bd57a748 176extern char *construct_inferior_arguments (int, char **);
552c04a7 177
c906108c
SS
178/* From infcmd.c */
179
6efcd9a8
PA
180/* Initial inferior setup. Determines the exec file is not yet known,
181 takes any necessary post-attaching actions, fetches the target
182 description and syncs the shared library list. */
183
184extern void setup_inferior (int from_tty);
185
281b533b
DJ
186extern void post_create_inferior (struct target_ops *, int);
187
0b39b52e 188extern void attach_command (const char *, int);
c906108c 189
cbaaa0ca 190extern const char *get_inferior_args (void);
07091751 191
0b39b52e 192extern void set_inferior_args (const char *);
07091751 193
552c04a7
TT
194extern void set_inferior_args_vector (int, char **);
195
1d12d88f 196extern void registers_info (const char *, int);
36dc181b 197
77ebaa5a
VP
198extern void continue_1 (int all_threads);
199
77ebaa5a
VP
200extern void interrupt_target_1 (int all_threads);
201
5419bdae
TT
202using delete_longjmp_breakpoint_cleanup
203 = FORWARD_SCOPE_EXIT (delete_longjmp_breakpoint);
186c406b 204
981a3fb3 205extern void detach_command (const char *, int);
6418d433 206
75cbc781 207extern void notice_new_inferior (struct thread_info *, int, int);
1941c569 208
0700e23e
PA
209extern struct value *get_return_value (struct value *function,
210 struct type *value_type);
cc72b2a2 211
329ea579
PA
212/* Prepare for execution command. TARGET is the target that will run
213 the command. BACKGROUND determines whether this is a foreground
214 (synchronous) or background (asynchronous) command. */
215
216extern void prepare_execution_command (struct target_ops *target,
217 int background);
218
98882a26
PA
219/* Whether to start up the debuggee under a shell.
220
221 If startup-with-shell is set, GDB's "run" will attempt to start up
222 the debuggee under a shell.
223
224 This is in order for argument-expansion to occur. E.g.,
225
226 (gdb) run *
227
228 The "*" gets expanded by the shell into a list of files.
229
230 While this is a nice feature, it may be handy to bypass the shell
231 in some cases. To disable this feature, do "set startup-with-shell
232 false".
233
234 The catch-exec traps expected during start-up will be one more if
235 the target is started up with a shell. */
236extern int startup_with_shell;
237
c906108c
SS
238/* Nonzero if stopped due to completion of a stack dummy routine. */
239
aa7d318d 240extern enum stop_stack_kind stop_stack_dummy;
c906108c
SS
241
242/* Nonzero if program stopped due to a random (unexpected) signal in
243 inferior process. */
244
245extern int stopped_by_random_signal;
246
f67c0c91
SDJ
247/* Print notices on inferior events (attach, detach, etc.), set with
248 `set print inferior-events'. */
249extern int print_inferior_events;
250
b0f4b84b
DJ
251/* Anything but NO_STOP_QUIETLY means we expect a trap and the caller
252 will handle it themselves. STOP_QUIETLY is used when running in
253 the shell before the child program has been exec'd and when running
254 through shared library loading. STOP_QUIETLY_REMOTE is used when
255 setting up a remote connection; it is like STOP_QUIETLY_NO_SIGSTOP
256 except that there is no need to hide a signal. */
c54cfec8 257
7c0bc051
DE
258/* STOP_QUIETLY_NO_SIGSTOP is used to handle a tricky situation with attach.
259 When doing an attach, the kernel stops the debuggee with a SIGSTOP.
260 On newer GNU/Linux kernels (>= 2.5.61) the handling of SIGSTOP for
261 a ptraced process has changed. Earlier versions of the kernel
262 would ignore these SIGSTOPs, while now SIGSTOP is treated like any
263 other signal, i.e. it is not muffled.
264
c54cfec8
EZ
265 If the gdb user does a 'continue' after the 'attach', gdb passes
266 the global variable stop_signal (which stores the signal from the
267 attach, SIGSTOP) to the ptrace(PTRACE_CONT,...) call. This is
268 problematic, because the kernel doesn't ignore such SIGSTOP
1777feb0 269 now. I.e. it is reported back to gdb, which in turn presents it
c54cfec8 270 back to the user.
7c0bc051 271
c54cfec8
EZ
272 To avoid the problem, we use STOP_QUIETLY_NO_SIGSTOP, which allows
273 gdb to clear the value of stop_signal after the attach, so that it
274 is not passed back down to the kernel. */
275
276enum stop_kind
277 {
278 NO_STOP_QUIETLY = 0,
279 STOP_QUIETLY,
b0f4b84b 280 STOP_QUIETLY_REMOTE,
c54cfec8
EZ
281 STOP_QUIETLY_NO_SIGSTOP
282 };
c906108c 283
c906108c 284\f
faaf634c 285/* Possible values for gdbarch_call_dummy_location. */
c906108c 286#define ON_STACK 1
c906108c
SS
287#define AT_ENTRY_POINT 4
288
089354bb
SM
289/* Base class for target-specific inferior data. */
290
291struct private_inferior
292{
293 virtual ~private_inferior () = 0;
294};
b77209e0 295
16c381f0
JK
296/* Inferior process specific part of `struct infcall_control_state'.
297
298 Inferior thread counterpart is `struct thread_control_state'. */
299
300struct inferior_control_state
301{
ee841dd8
TT
302 inferior_control_state ()
303 : stop_soon (NO_STOP_QUIETLY)
304 {
305 }
306
307 explicit inferior_control_state (enum stop_kind when)
308 : stop_soon (when)
309 {
310 }
311
16c381f0
JK
312 /* See the definition of stop_kind above. */
313 enum stop_kind stop_soon;
314};
315
3a3fd0fd
PA
316/* Return a pointer to the current inferior. */
317extern inferior *current_inferior ();
318
319extern void set_current_inferior (inferior *);
320
b77209e0
PA
321/* GDB represents the state of each program execution with an object
322 called an inferior. An inferior typically corresponds to a process
323 but is more general and applies also to targets that do not have a
324 notion of processes. Each run of an executable creates a new
325 inferior, as does each attachment to an existing process.
326 Inferiors have unique internal identifiers that are different from
327 target process ids. Each inferior may in turn have multiple
3a3fd0fd
PA
328 threads running in it.
329
330 Inferiors are intrusively refcounted objects. Unlike thread
331 objects, being the user-selected inferior is considered a strong
332 reference and is thus accounted for in the inferior object's
333 refcount (see set_current_inferior). When GDB needs to remember
334 the selected inferior to later restore it, GDB temporarily bumps
335 the inferior object's refcount, to prevent something deleting the
336 inferior object before reverting back (e.g., due to a
337 "remove-inferiors" command (see
09e3c4ca 338 scoped_restore_current_inferior). All other inferior
3a3fd0fd
PA
339 references are considered weak references. Inferiors are always
340 listed exactly once in the inferior list, so placing an inferior in
341 the inferior list is an implicit, not counted strong reference. */
342
343class inferior : public refcounted_object
b77209e0 344{
0550c955
PA
345public:
346 explicit inferior (int pid);
347 ~inferior ();
348
3a3fd0fd
PA
349 /* Returns true if we can delete this inferior. */
350 bool deletable () const { return refcount () == 0; }
351
b77209e0 352 /* Pointer to next inferior in singly-linked list of inferiors. */
0550c955 353 struct inferior *next = NULL;
b77209e0 354
08036331
PA
355 /* This inferior's thread list. */
356 thread_info *thread_list = nullptr;
357
358 /* Returns a range adapter covering the inferior's threads,
359 including exited threads. Used like this:
360
361 for (thread_info *thr : inf->threads ())
362 { .... }
363 */
364 inf_threads_range threads ()
365 { return inf_threads_range (this->thread_list); }
366
367 /* Returns a range adapter covering the inferior's non-exited
368 threads. Used like this:
369
370 for (thread_info *thr : inf->non_exited_threads ())
371 { .... }
372 */
373 inf_non_exited_threads_range non_exited_threads ()
374 { return inf_non_exited_threads_range (this->thread_list); }
375
376 /* Like inferior::threads(), but returns a range adapter that can be
377 used with range-for, safely. I.e., it is safe to delete the
378 currently-iterated thread, like this:
379
380 for (thread_info *t : inf->threads_safe ())
381 if (some_condition ())
382 delete f;
383 */
384 inline safe_inf_threads_range threads_safe ()
385 { return safe_inf_threads_range (this->thread_list); }
386
b77209e0
PA
387 /* Convenient handle (GDB inferior id). Unique across all
388 inferiors. */
0550c955 389 int num = 0;
b77209e0
PA
390
391 /* Actual target inferior id, usually, a process id. This matches
392 the ptid_t.pid member of threads of this inferior. */
0550c955 393 int pid = 0;
e714e1bf 394 /* True if the PID was actually faked by GDB. */
0550c955 395 bool fake_pid_p = false;
b77209e0 396
5d5658a1 397 /* The highest thread number this inferior ever had. */
0550c955 398 int highest_thread_num = 0;
5d5658a1 399
16c381f0
JK
400 /* State of GDB control of inferior process execution.
401 See `struct inferior_control_state'. */
ee841dd8 402 inferior_control_state control;
16c381f0 403
6c95b8df
PA
404 /* True if this was an auto-created inferior, e.g. created from
405 following a fork; false, if this inferior was manually added by
406 the user, and we should not attempt to prune it
407 automatically. */
0550c955 408 bool removable = false;
6c95b8df
PA
409
410 /* The address space bound to this inferior. */
0550c955 411 struct address_space *aspace = NULL;
6c95b8df
PA
412
413 /* The program space bound to this inferior. */
0550c955 414 struct program_space *pspace = NULL;
6c95b8df 415
3f81c18a 416 /* The arguments string to use when running. */
0550c955 417 char *args = NULL;
3f81c18a
VP
418
419 /* The size of elements in argv. */
0550c955 420 int argc = 0;
3f81c18a
VP
421
422 /* The vector version of arguments. If ARGC is nonzero,
423 then we must compute ARGS from this (via the target).
424 This is always coming from main's argv and therefore
425 should never be freed. */
0550c955 426 char **argv = NULL;
3f81c18a 427
d092c5a2
SDJ
428 /* The current working directory that will be used when starting
429 this inferior. */
430 gdb::unique_xmalloc_ptr<char> cwd;
431
3f81c18a 432 /* The name of terminal device to use for I/O. */
0550c955 433 char *terminal = NULL;
3f81c18a 434
e671cd59
PA
435 /* The terminal state as set by the last target_terminal::terminal_*
436 call. */
437 target_terminal_state terminal_state = target_terminal_state::is_ours;
438
3f81c18a
VP
439 /* Environment to use for running inferior,
440 in format described in environ.h. */
9a6c7d9c 441 gdb_environ environment;
3f81c18a 442
0550c955
PA
443 /* True if this child process was attached rather than forked. */
444 bool attach_flag = false;
181e7f93 445
6c95b8df
PA
446 /* If this inferior is a vfork child, then this is the pointer to
447 its vfork parent, if GDB is still attached to it. */
0550c955 448 inferior *vfork_parent = NULL;
6c95b8df
PA
449
450 /* If this process is a vfork parent, this is the pointer to the
451 child. Since a vfork parent is left frozen by the kernel until
452 the child execs or exits, a process can only have one vfork child
453 at a given time. */
0550c955 454 inferior *vfork_child = NULL;
6c95b8df
PA
455
456 /* True if this inferior should be detached when it's vfork sibling
457 exits or execs. */
0550c955 458 bool pending_detach = false;
6c95b8df
PA
459
460 /* True if this inferior is a vfork parent waiting for a vfork child
461 not under our control to be done with the shared memory region,
462 either by exiting or execing. */
0550c955 463 bool waiting_for_vfork_done = false;
6c95b8df 464
24291992 465 /* True if we're in the process of detaching from this inferior. */
9bcb1f16 466 bool detaching = false;
24291992 467
e0ba6746
PA
468 /* What is left to do for an execution command after any thread of
469 this inferior stops. For continuations associated with a
470 specific thread, see `struct thread_info'. */
0550c955 471 continuation *continuations = NULL;
e0ba6746 472
6efcd9a8
PA
473 /* True if setup_inferior wasn't called for this inferior yet.
474 Until that is done, we must not access inferior memory or
475 registers, as we haven't determined the target
476 architecture/description. */
0550c955 477 bool needs_setup = false;
6efcd9a8 478
b77209e0 479 /* Private data used by the target vector implementation. */
089354bb 480 std::unique_ptr<private_inferior> priv;
a96d9b2e 481
8cf64490
TT
482 /* HAS_EXIT_CODE is true if the inferior exited with an exit code.
483 In this case, the EXIT_CODE field is also valid. */
0550c955
PA
484 bool has_exit_code = false;
485 LONGEST exit_code = 0;
8cf64490 486
7dcd53a0 487 /* Default flags to pass to the symbol reading functions. These are
b15cc25c 488 used whenever a new objfile is created. */
0550c955 489 symfile_add_flags symfile_flags = 0;
7dcd53a0 490
6ecd4729
PA
491 /* Info about an inferior's target description (if it's fetched; the
492 user supplied description's filename, if any; etc.). */
0550c955 493 target_desc_info *tdesc_info = NULL;
6ecd4729
PA
494
495 /* The architecture associated with the inferior through the
496 connection to the target.
497
498 The architecture vector provides some information that is really
499 a property of the inferior, accessed through a particular target:
500 ptrace operations; the layout of certain RSP packets; the
501 solib_ops vector; etc. To differentiate architecture accesses to
502 per-inferior/target properties from
503 per-thread/per-frame/per-objfile properties, accesses to
504 per-inferior/target properties should be made through
505 this gdbarch. */
0550c955 506 struct gdbarch *gdbarch = NULL;
6ecd4729 507
d20172fc
SM
508 /* Data related to displaced stepping. */
509 displaced_step_inferior_state displaced_step_state;
510
6c95b8df 511 /* Per inferior data-pointers required by other GDB modules. */
8e260fc0 512 REGISTRY_FIELDS;
b77209e0
PA
513};
514
6c95b8df
PA
515/* Keep a registry of per-inferior data-pointers required by other GDB
516 modules. */
517
8e260fc0 518DECLARE_REGISTRY (inferior);
6c95b8df 519
b77209e0
PA
520/* Add an inferior to the inferior list, print a message that a new
521 inferior is found, and return the pointer to the new inferior.
522 Caller may use this pointer to initialize the private inferior
523 data. */
524extern struct inferior *add_inferior (int pid);
525
526/* Same as add_inferior, but don't print new inferior notifications to
527 the CLI. */
528extern struct inferior *add_inferior_silent (int pid);
529
7a41607e 530extern void delete_inferior (struct inferior *todel);
b77209e0
PA
531
532/* Delete an existing inferior list entry, due to inferior detaching. */
bc09b0c1
SM
533extern void detach_inferior (inferior *inf);
534
00431a78 535extern void exit_inferior (inferior *inf);
b77209e0 536
00431a78 537extern void exit_inferior_silent (inferior *inf);
6c95b8df
PA
538
539extern void exit_inferior_num_silent (int num);
540
541extern void inferior_appeared (struct inferior *inf, int pid);
542
82f73884
PA
543/* Get rid of all inferiors. */
544extern void discard_all_inferiors (void);
545
6c95b8df 546/* Search function to lookup an inferior by target 'pid'. */
b77209e0
PA
547extern struct inferior *find_inferior_pid (int pid);
548
c9657e70
SM
549/* Search function to lookup an inferior whose pid is equal to 'ptid.pid'. */
550extern struct inferior *find_inferior_ptid (ptid_t ptid);
551
6c95b8df
PA
552/* Search function to lookup an inferior by GDB 'num'. */
553extern struct inferior *find_inferior_id (int num);
554
32990ada
PA
555/* Find an inferior bound to PSPACE, giving preference to the current
556 inferior. */
6c95b8df
PA
557extern struct inferior *
558 find_inferior_for_program_space (struct program_space *pspace);
559
b77209e0
PA
560/* Inferior iterator function.
561
562 Calls a callback function once for each inferior, so long as the
563 callback function returns false. If the callback function returns
564 true, the iteration will end and the current inferior will be
565 returned. This can be useful for implementing a search for a
566 inferior with arbitrary attributes, or for applying some operation
567 to every inferior.
568
569 It is safe to delete the iterated inferior from the callback. */
570extern struct inferior *iterate_over_inferiors (int (*) (struct inferior *,
571 void *),
572 void *);
573
b77209e0
PA
574/* Returns true if the inferior list is not empty. */
575extern int have_inferiors (void);
576
8020350c
DB
577/* Returns the number of live inferiors (real live processes). */
578extern int number_of_live_inferiors (void);
579
c35b1492
PA
580/* Returns true if there are any live inferiors in the inferior list
581 (not cores, not executables, real live processes). */
582extern int have_live_inferiors (void);
583
5ed8105e
PA
584/* Save/restore the current inferior. */
585
586class scoped_restore_current_inferior
587{
588public:
589 scoped_restore_current_inferior ()
590 : m_saved_inf (current_inferior ())
591 {}
592
593 ~scoped_restore_current_inferior ()
594 { set_current_inferior (m_saved_inf); }
595
d6541620 596 DISABLE_COPY_AND_ASSIGN (scoped_restore_current_inferior);
5ed8105e
PA
597
598private:
599 inferior *m_saved_inf;
600};
601
6c95b8df 602
c65b3e0d
PA
603/* Traverse all inferiors. */
604
08036331 605extern struct inferior *inferior_list;
c65b3e0d 606
08036331
PA
607/* Pull in the internals of the inferiors ranges and iterators. Must
608 be done after struct inferior is defined. */
609#include "inferior-iter.h"
85ad3aaf 610
08036331
PA
611/* Return a range that can be used to walk over all inferiors
612 inferiors, with range-for, safely. I.e., it is safe to delete the
613 currently-iterated inferior. When combined with range-for, this
614 allow convenient patterns like this:
85ad3aaf 615
08036331
PA
616 for (inferior *inf : all_inferiors_safe ())
617 if (some_condition ())
618 delete inf;
619*/
620
621inline all_inferiors_safe_range
622all_inferiors_safe ()
623{
624 return {};
625}
626
627/* Returns a range representing all inferiors, suitable to use with
628 range-for, like this:
629
630 for (inferior *inf : all_inferiors ())
631 [...]
632*/
633
634inline all_inferiors_range
635all_inferiors ()
636{
637 return {};
638}
639
640/* Return a range that can be used to walk over all inferiors with PID
641 not zero, with range-for. */
642
643inline all_non_exited_inferiors_range
644all_non_exited_inferiors ()
645{
646 return {};
647}
6c95b8df
PA
648
649/* Prune away automatically added inferiors that aren't required
650 anymore. */
651extern void prune_inferiors (void);
652
653extern int number_of_inferiors (void);
654
a79b8f6e
VP
655extern struct inferior *add_inferior_with_spaces (void);
656
4034d0ff
AT
657/* Print the current selected inferior. */
658extern void print_selected_inferior (struct ui_out *uiout);
659
c906108c 660#endif /* !defined (INFERIOR_H) */
This page took 1.563906 seconds and 4 git commands to generate.