Commit | Line | Data |
---|---|---|
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 | |
32d0add0 | 4 | Copyright (C) 1986-2015 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 |
24 | struct target_waitstatus; |
25 | struct frame_info; | |
26 | struct ui_file; | |
27 | struct type; | |
67a2b77e | 28 | struct gdbarch; |
72cec141 | 29 | struct regcache; |
b77209e0 | 30 | struct ui_out; |
7e1789f5 | 31 | struct terminal_info; |
6ecd4729 | 32 | struct target_desc_info; |
67a2b77e | 33 | |
c906108c SS |
34 | /* For bpstat. */ |
35 | #include "breakpoint.h" | |
36 | ||
2ea28649 | 37 | /* For enum gdb_signal. */ |
c906108c SS |
38 | #include "target.h" |
39 | ||
aa0cd9c1 AC |
40 | /* For struct frame_id. */ |
41 | #include "frame.h" | |
42 | ||
6c95b8df | 43 | #include "progspace.h" |
8e260fc0 | 44 | #include "registry.h" |
6c95b8df | 45 | |
16c381f0 JK |
46 | struct infcall_suspend_state; |
47 | struct infcall_control_state; | |
7a292a7a | 48 | |
16c381f0 JK |
49 | extern struct infcall_suspend_state *save_infcall_suspend_state (void); |
50 | extern struct infcall_control_state *save_infcall_control_state (void); | |
c906108c | 51 | |
16c381f0 JK |
52 | extern void restore_infcall_suspend_state (struct infcall_suspend_state *); |
53 | extern void restore_infcall_control_state (struct infcall_control_state *); | |
b89667eb | 54 | |
16c381f0 JK |
55 | extern struct cleanup *make_cleanup_restore_infcall_suspend_state |
56 | (struct infcall_suspend_state *); | |
57 | extern struct cleanup *make_cleanup_restore_infcall_control_state | |
58 | (struct infcall_control_state *); | |
b89667eb | 59 | |
16c381f0 JK |
60 | extern void discard_infcall_suspend_state (struct infcall_suspend_state *); |
61 | extern void discard_infcall_control_state (struct infcall_control_state *); | |
7a292a7a | 62 | |
16c381f0 JK |
63 | extern struct regcache * |
64 | get_infcall_suspend_state_regcache (struct infcall_suspend_state *); | |
b89667eb | 65 | |
ce696e05 KB |
66 | /* Save value of inferior_ptid so that it may be restored by |
67 | a later call to do_cleanups(). Returns the struct cleanup | |
68 | pointer needed for later doing the cleanup. */ | |
69 | extern struct cleanup * save_inferior_ptid (void); | |
70 | ||
a14ed312 | 71 | extern void set_sigint_trap (void); |
c906108c | 72 | |
a14ed312 | 73 | extern void clear_sigint_trap (void); |
c906108c | 74 | |
3cb3b8df | 75 | /* Set/get file name for default use for standard in/out in the inferior. */ |
c906108c | 76 | |
3cb3b8df BR |
77 | extern void set_inferior_io_terminal (const char *terminal_name); |
78 | extern const char *get_inferior_io_terminal (void); | |
c906108c | 79 | |
39f77062 | 80 | /* Collected pid, tid, etc. of the debugged inferior. When there's |
dfd4cc63 | 81 | no inferior, ptid_get_pid (inferior_ptid) will be 0. */ |
c906108c | 82 | |
39f77062 | 83 | extern ptid_t inferior_ptid; |
c906108c | 84 | |
a14ed312 | 85 | extern void generic_mourn_inferior (void); |
c906108c | 86 | |
9898f801 UW |
87 | extern CORE_ADDR unsigned_pointer_to_address (struct gdbarch *gdbarch, |
88 | struct type *type, | |
b60c417a | 89 | const gdb_byte *buf); |
9898f801 UW |
90 | extern void unsigned_address_to_pointer (struct gdbarch *gdbarch, |
91 | struct type *type, gdb_byte *buf, | |
ac2e2ef7 | 92 | CORE_ADDR addr); |
9898f801 UW |
93 | extern CORE_ADDR signed_pointer_to_address (struct gdbarch *gdbarch, |
94 | struct type *type, | |
b60c417a | 95 | const gdb_byte *buf); |
9898f801 UW |
96 | extern void address_to_signed_pointer (struct gdbarch *gdbarch, |
97 | struct type *type, gdb_byte *buf, | |
ac2e2ef7 | 98 | CORE_ADDR addr); |
4478b372 | 99 | |
a14ed312 | 100 | extern void reopen_exec_file (void); |
c906108c | 101 | |
c906108c SS |
102 | /* From misc files */ |
103 | ||
0ab7a791 AC |
104 | extern void default_print_registers_info (struct gdbarch *gdbarch, |
105 | struct ui_file *file, | |
106 | struct frame_info *frame, | |
107 | int regnum, int all); | |
666e11c5 | 108 | |
cc86d1cb YQ |
109 | /* Default implementation of gdbarch_print_float_info. Print |
110 | the values of all floating point registers. */ | |
111 | ||
112 | extern void default_print_float_info (struct gdbarch *gdbarch, | |
113 | struct ui_file *file, | |
114 | struct frame_info *frame, | |
115 | const char *args); | |
116 | ||
0a4f40a2 | 117 | extern void child_terminal_info (struct target_ops *self, const char *, int); |
c906108c | 118 | |
a14ed312 | 119 | extern void term_info (char *, int); |
c906108c | 120 | |
d6b64346 PA |
121 | extern void child_terminal_ours (struct target_ops *self); |
122 | ||
123 | extern void child_terminal_ours_for_output (struct target_ops *self); | |
c906108c | 124 | |
d6b64346 | 125 | extern void child_terminal_inferior (struct target_ops *self); |
c906108c | 126 | |
d6b64346 | 127 | extern void child_terminal_init (struct target_ops *self); |
c906108c | 128 | |
d6b64346 | 129 | extern void child_terminal_init_with_pgrp (int pgrp); |
c906108c | 130 | |
c906108c SS |
131 | /* From fork-child.c */ |
132 | ||
136d6dae VP |
133 | extern int fork_inferior (char *, char *, char **, |
134 | void (*)(void), | |
e69860f1 TG |
135 | void (*)(int), void (*)(void), char *, |
136 | void (*)(const char *, | |
137 | char * const *, char * const *)); | |
c906108c SS |
138 | |
139 | ||
a14ed312 | 140 | extern void startup_inferior (int); |
c906108c | 141 | |
bd57a748 | 142 | extern char *construct_inferior_arguments (int, char **); |
552c04a7 | 143 | |
c906108c SS |
144 | /* From infcmd.c */ |
145 | ||
281b533b DJ |
146 | extern void post_create_inferior (struct target_ops *, int); |
147 | ||
a14ed312 | 148 | extern void attach_command (char *, int); |
c906108c | 149 | |
a250df2e | 150 | extern char *get_inferior_args (void); |
07091751 | 151 | |
3f81c18a | 152 | extern void set_inferior_args (char *); |
07091751 | 153 | |
552c04a7 TT |
154 | extern void set_inferior_args_vector (int, char **); |
155 | ||
36dc181b EZ |
156 | extern void registers_info (char *, int); |
157 | ||
77ebaa5a VP |
158 | extern void continue_1 (int all_threads); |
159 | ||
77ebaa5a VP |
160 | extern void interrupt_target_1 (int all_threads); |
161 | ||
186c406b TT |
162 | extern void delete_longjmp_breakpoint_cleanup (void *arg); |
163 | ||
6418d433 VP |
164 | extern void detach_command (char *, int); |
165 | ||
1941c569 PA |
166 | extern void notice_new_inferior (ptid_t, int, int); |
167 | ||
6a3a010b | 168 | extern struct value *get_return_value (struct value *function, |
cc72b2a2 KP |
169 | struct type *value_type); |
170 | ||
329ea579 PA |
171 | /* Prepare for execution command. TARGET is the target that will run |
172 | the command. BACKGROUND determines whether this is a foreground | |
173 | (synchronous) or background (asynchronous) command. */ | |
174 | ||
175 | extern void prepare_execution_command (struct target_ops *target, | |
176 | int background); | |
177 | ||
98882a26 PA |
178 | /* Whether to start up the debuggee under a shell. |
179 | ||
180 | If startup-with-shell is set, GDB's "run" will attempt to start up | |
181 | the debuggee under a shell. | |
182 | ||
183 | This is in order for argument-expansion to occur. E.g., | |
184 | ||
185 | (gdb) run * | |
186 | ||
187 | The "*" gets expanded by the shell into a list of files. | |
188 | ||
189 | While this is a nice feature, it may be handy to bypass the shell | |
190 | in some cases. To disable this feature, do "set startup-with-shell | |
191 | false". | |
192 | ||
193 | The catch-exec traps expected during start-up will be one more if | |
194 | the target is started up with a shell. */ | |
195 | extern int startup_with_shell; | |
196 | ||
c906108c SS |
197 | /* Address at which inferior stopped. */ |
198 | ||
199 | extern CORE_ADDR stop_pc; | |
200 | ||
c906108c SS |
201 | /* Nonzero if stopped due to completion of a stack dummy routine. */ |
202 | ||
aa7d318d | 203 | extern enum stop_stack_kind stop_stack_dummy; |
c906108c SS |
204 | |
205 | /* Nonzero if program stopped due to a random (unexpected) signal in | |
206 | inferior process. */ | |
207 | ||
208 | extern int stopped_by_random_signal; | |
209 | ||
a49f981f MS |
210 | /* STEP_OVER_ALL means step over all subroutine calls. |
211 | STEP_OVER_UNDEBUGGABLE means step over calls to undebuggable functions. | |
212 | STEP_OVER_NONE means don't step over any subroutine calls. */ | |
c906108c | 213 | |
5fbbeb29 CF |
214 | enum step_over_calls_kind |
215 | { | |
216 | STEP_OVER_NONE, | |
217 | STEP_OVER_ALL, | |
a4acd088 CF |
218 | STEP_OVER_UNDEBUGGABLE |
219 | }; | |
220 | ||
b0f4b84b DJ |
221 | /* Anything but NO_STOP_QUIETLY means we expect a trap and the caller |
222 | will handle it themselves. STOP_QUIETLY is used when running in | |
223 | the shell before the child program has been exec'd and when running | |
224 | through shared library loading. STOP_QUIETLY_REMOTE is used when | |
225 | setting up a remote connection; it is like STOP_QUIETLY_NO_SIGSTOP | |
226 | except that there is no need to hide a signal. */ | |
c54cfec8 | 227 | |
7c0bc051 DE |
228 | /* STOP_QUIETLY_NO_SIGSTOP is used to handle a tricky situation with attach. |
229 | When doing an attach, the kernel stops the debuggee with a SIGSTOP. | |
230 | On newer GNU/Linux kernels (>= 2.5.61) the handling of SIGSTOP for | |
231 | a ptraced process has changed. Earlier versions of the kernel | |
232 | would ignore these SIGSTOPs, while now SIGSTOP is treated like any | |
233 | other signal, i.e. it is not muffled. | |
234 | ||
c54cfec8 EZ |
235 | If the gdb user does a 'continue' after the 'attach', gdb passes |
236 | the global variable stop_signal (which stores the signal from the | |
237 | attach, SIGSTOP) to the ptrace(PTRACE_CONT,...) call. This is | |
238 | problematic, because the kernel doesn't ignore such SIGSTOP | |
1777feb0 | 239 | now. I.e. it is reported back to gdb, which in turn presents it |
c54cfec8 | 240 | back to the user. |
7c0bc051 | 241 | |
c54cfec8 EZ |
242 | To avoid the problem, we use STOP_QUIETLY_NO_SIGSTOP, which allows |
243 | gdb to clear the value of stop_signal after the attach, so that it | |
244 | is not passed back down to the kernel. */ | |
245 | ||
246 | enum stop_kind | |
247 | { | |
248 | NO_STOP_QUIETLY = 0, | |
249 | STOP_QUIETLY, | |
b0f4b84b | 250 | STOP_QUIETLY_REMOTE, |
c54cfec8 EZ |
251 | STOP_QUIETLY_NO_SIGSTOP |
252 | }; | |
c906108c | 253 | |
c906108c | 254 | \f |
faaf634c | 255 | /* Possible values for gdbarch_call_dummy_location. */ |
c906108c | 256 | #define ON_STACK 1 |
c906108c SS |
257 | #define AT_ENTRY_POINT 4 |
258 | ||
98882a26 PA |
259 | /* Number of traps that happen between exec'ing the shell to run an |
260 | inferior and when we finally get to the inferior code, not counting | |
32a8097b PA |
261 | the exec for the shell. This is 1 on all supported |
262 | implementations. */ | |
98882a26 | 263 | #define START_INFERIOR_TRAPS_EXPECTED 1 |
b77209e0 PA |
264 | |
265 | struct private_inferior; | |
266 | ||
16c381f0 JK |
267 | /* Inferior process specific part of `struct infcall_control_state'. |
268 | ||
269 | Inferior thread counterpart is `struct thread_control_state'. */ | |
270 | ||
271 | struct inferior_control_state | |
272 | { | |
273 | /* See the definition of stop_kind above. */ | |
274 | enum stop_kind stop_soon; | |
275 | }; | |
276 | ||
277 | /* Inferior process specific part of `struct infcall_suspend_state'. | |
278 | ||
279 | Inferior thread counterpart is `struct thread_suspend_state'. */ | |
280 | ||
dd80ea3c | 281 | #if 0 /* Currently unused and empty structures are not valid C. */ |
16c381f0 JK |
282 | struct inferior_suspend_state |
283 | { | |
284 | }; | |
dd80ea3c | 285 | #endif |
16c381f0 | 286 | |
b77209e0 PA |
287 | /* GDB represents the state of each program execution with an object |
288 | called an inferior. An inferior typically corresponds to a process | |
289 | but is more general and applies also to targets that do not have a | |
290 | notion of processes. Each run of an executable creates a new | |
291 | inferior, as does each attachment to an existing process. | |
292 | Inferiors have unique internal identifiers that are different from | |
293 | target process ids. Each inferior may in turn have multiple | |
294 | threads running in it. */ | |
295 | ||
296 | struct inferior | |
297 | { | |
298 | /* Pointer to next inferior in singly-linked list of inferiors. */ | |
299 | struct inferior *next; | |
300 | ||
301 | /* Convenient handle (GDB inferior id). Unique across all | |
302 | inferiors. */ | |
303 | int num; | |
304 | ||
305 | /* Actual target inferior id, usually, a process id. This matches | |
306 | the ptid_t.pid member of threads of this inferior. */ | |
307 | int pid; | |
e714e1bf UW |
308 | /* True if the PID was actually faked by GDB. */ |
309 | int fake_pid_p; | |
b77209e0 | 310 | |
16c381f0 JK |
311 | /* State of GDB control of inferior process execution. |
312 | See `struct inferior_control_state'. */ | |
313 | struct inferior_control_state control; | |
314 | ||
315 | /* State of inferior process to restore after GDB is done with an inferior | |
316 | call. See `struct inferior_suspend_state'. */ | |
dd80ea3c | 317 | #if 0 /* Currently unused and empty structures are not valid C. */ |
16c381f0 | 318 | struct inferior_suspend_state suspend; |
dd80ea3c | 319 | #endif |
16c381f0 | 320 | |
6c95b8df PA |
321 | /* True if this was an auto-created inferior, e.g. created from |
322 | following a fork; false, if this inferior was manually added by | |
323 | the user, and we should not attempt to prune it | |
324 | automatically. */ | |
325 | int removable; | |
326 | ||
327 | /* The address space bound to this inferior. */ | |
328 | struct address_space *aspace; | |
329 | ||
330 | /* The program space bound to this inferior. */ | |
331 | struct program_space *pspace; | |
332 | ||
3f81c18a VP |
333 | /* The arguments string to use when running. */ |
334 | char *args; | |
335 | ||
336 | /* The size of elements in argv. */ | |
337 | int argc; | |
338 | ||
339 | /* The vector version of arguments. If ARGC is nonzero, | |
340 | then we must compute ARGS from this (via the target). | |
341 | This is always coming from main's argv and therefore | |
342 | should never be freed. */ | |
343 | char **argv; | |
344 | ||
345 | /* The name of terminal device to use for I/O. */ | |
346 | char *terminal; | |
347 | ||
348 | /* Environment to use for running inferior, | |
349 | in format described in environ.h. */ | |
350 | struct gdb_environ *environment; | |
351 | ||
181e7f93 PA |
352 | /* Nonzero if this child process was attached rather than |
353 | forked. */ | |
354 | int attach_flag; | |
355 | ||
6c95b8df PA |
356 | /* If this inferior is a vfork child, then this is the pointer to |
357 | its vfork parent, if GDB is still attached to it. */ | |
358 | struct inferior *vfork_parent; | |
359 | ||
360 | /* If this process is a vfork parent, this is the pointer to the | |
361 | child. Since a vfork parent is left frozen by the kernel until | |
362 | the child execs or exits, a process can only have one vfork child | |
363 | at a given time. */ | |
364 | struct inferior *vfork_child; | |
365 | ||
366 | /* True if this inferior should be detached when it's vfork sibling | |
367 | exits or execs. */ | |
368 | int pending_detach; | |
369 | ||
370 | /* True if this inferior is a vfork parent waiting for a vfork child | |
371 | not under our control to be done with the shared memory region, | |
372 | either by exiting or execing. */ | |
373 | int waiting_for_vfork_done; | |
374 | ||
24291992 PA |
375 | /* True if we're in the process of detaching from this inferior. */ |
376 | int detaching; | |
377 | ||
e0ba6746 PA |
378 | /* What is left to do for an execution command after any thread of |
379 | this inferior stops. For continuations associated with a | |
380 | specific thread, see `struct thread_info'. */ | |
381 | struct continuation *continuations; | |
382 | ||
b77209e0 PA |
383 | /* Private data used by the target vector implementation. */ |
384 | struct private_inferior *private; | |
a96d9b2e | 385 | |
8cf64490 TT |
386 | /* HAS_EXIT_CODE is true if the inferior exited with an exit code. |
387 | In this case, the EXIT_CODE field is also valid. */ | |
388 | int has_exit_code; | |
389 | LONGEST exit_code; | |
390 | ||
7dcd53a0 TT |
391 | /* Default flags to pass to the symbol reading functions. These are |
392 | used whenever a new objfile is created. The valid values come | |
393 | from enum symfile_add_flags. */ | |
394 | int symfile_flags; | |
395 | ||
6ecd4729 PA |
396 | /* Info about an inferior's target description (if it's fetched; the |
397 | user supplied description's filename, if any; etc.). */ | |
398 | struct target_desc_info *tdesc_info; | |
399 | ||
400 | /* The architecture associated with the inferior through the | |
401 | connection to the target. | |
402 | ||
403 | The architecture vector provides some information that is really | |
404 | a property of the inferior, accessed through a particular target: | |
405 | ptrace operations; the layout of certain RSP packets; the | |
406 | solib_ops vector; etc. To differentiate architecture accesses to | |
407 | per-inferior/target properties from | |
408 | per-thread/per-frame/per-objfile properties, accesses to | |
409 | per-inferior/target properties should be made through | |
410 | this gdbarch. */ | |
411 | struct gdbarch *gdbarch; | |
412 | ||
6c95b8df | 413 | /* Per inferior data-pointers required by other GDB modules. */ |
8e260fc0 | 414 | REGISTRY_FIELDS; |
b77209e0 PA |
415 | }; |
416 | ||
6c95b8df PA |
417 | /* Keep a registry of per-inferior data-pointers required by other GDB |
418 | modules. */ | |
419 | ||
8e260fc0 | 420 | DECLARE_REGISTRY (inferior); |
6c95b8df | 421 | |
b77209e0 PA |
422 | /* Create an empty inferior list, or empty the existing one. */ |
423 | extern void init_inferior_list (void); | |
424 | ||
425 | /* Add an inferior to the inferior list, print a message that a new | |
426 | inferior is found, and return the pointer to the new inferior. | |
427 | Caller may use this pointer to initialize the private inferior | |
428 | data. */ | |
429 | extern struct inferior *add_inferior (int pid); | |
430 | ||
431 | /* Same as add_inferior, but don't print new inferior notifications to | |
432 | the CLI. */ | |
433 | extern struct inferior *add_inferior_silent (int pid); | |
434 | ||
435 | /* Delete an existing inferior list entry, due to inferior exit. */ | |
436 | extern void delete_inferior (int pid); | |
437 | ||
a79b8f6e VP |
438 | extern void delete_inferior_1 (struct inferior *todel, int silent); |
439 | ||
b77209e0 PA |
440 | /* Same as delete_inferior, but don't print new inferior notifications |
441 | to the CLI. */ | |
442 | extern void delete_inferior_silent (int pid); | |
443 | ||
444 | /* Delete an existing inferior list entry, due to inferior detaching. */ | |
445 | extern void detach_inferior (int pid); | |
446 | ||
6c95b8df PA |
447 | extern void exit_inferior (int pid); |
448 | ||
449 | extern void exit_inferior_silent (int pid); | |
450 | ||
451 | extern void exit_inferior_num_silent (int num); | |
452 | ||
453 | extern void inferior_appeared (struct inferior *inf, int pid); | |
454 | ||
82f73884 PA |
455 | /* Get rid of all inferiors. */ |
456 | extern void discard_all_inferiors (void); | |
457 | ||
b77209e0 PA |
458 | /* Translate the integer inferior id (GDB's homegrown id, not the system's) |
459 | into a "pid" (which may be overloaded with extra inferior information). */ | |
460 | extern int gdb_inferior_id_to_pid (int); | |
461 | ||
462 | /* Translate a target 'pid' into the integer inferior id (GDB's | |
463 | homegrown id, not the system's). */ | |
464 | extern int pid_to_gdb_inferior_id (int pid); | |
465 | ||
466 | /* Boolean test for an already-known pid. */ | |
467 | extern int in_inferior_list (int pid); | |
468 | ||
469 | /* Boolean test for an already-known inferior id (GDB's homegrown id, | |
470 | not the system's). */ | |
2c0b251b | 471 | extern int valid_gdb_inferior_id (int num); |
b77209e0 | 472 | |
6c95b8df | 473 | /* Search function to lookup an inferior by target 'pid'. */ |
b77209e0 PA |
474 | extern struct inferior *find_inferior_pid (int pid); |
475 | ||
c9657e70 SM |
476 | /* Search function to lookup an inferior whose pid is equal to 'ptid.pid'. */ |
477 | extern struct inferior *find_inferior_ptid (ptid_t ptid); | |
478 | ||
6c95b8df PA |
479 | /* Search function to lookup an inferior by GDB 'num'. */ |
480 | extern struct inferior *find_inferior_id (int num); | |
481 | ||
32990ada PA |
482 | /* Find an inferior bound to PSPACE, giving preference to the current |
483 | inferior. */ | |
6c95b8df PA |
484 | extern struct inferior * |
485 | find_inferior_for_program_space (struct program_space *pspace); | |
486 | ||
b77209e0 PA |
487 | /* Inferior iterator function. |
488 | ||
489 | Calls a callback function once for each inferior, so long as the | |
490 | callback function returns false. If the callback function returns | |
491 | true, the iteration will end and the current inferior will be | |
492 | returned. This can be useful for implementing a search for a | |
493 | inferior with arbitrary attributes, or for applying some operation | |
494 | to every inferior. | |
495 | ||
496 | It is safe to delete the iterated inferior from the callback. */ | |
497 | extern struct inferior *iterate_over_inferiors (int (*) (struct inferior *, | |
498 | void *), | |
499 | void *); | |
500 | ||
b77209e0 PA |
501 | /* Returns true if the inferior list is not empty. */ |
502 | extern int have_inferiors (void); | |
503 | ||
c35b1492 PA |
504 | /* Returns true if there are any live inferiors in the inferior list |
505 | (not cores, not executables, real live processes). */ | |
506 | extern int have_live_inferiors (void); | |
507 | ||
b77209e0 PA |
508 | /* Return a pointer to the current inferior. It is an error to call |
509 | this if there is no current inferior. */ | |
510 | extern struct inferior *current_inferior (void); | |
511 | ||
6c95b8df PA |
512 | extern void set_current_inferior (struct inferior *); |
513 | ||
514 | extern struct cleanup *save_current_inferior (void); | |
515 | ||
c65b3e0d PA |
516 | /* Traverse all inferiors. */ |
517 | ||
518 | #define ALL_INFERIORS(I) \ | |
519 | for ((I) = inferior_list; (I); (I) = (I)->next) | |
520 | ||
6c95b8df PA |
521 | extern struct inferior *inferior_list; |
522 | ||
523 | /* Prune away automatically added inferiors that aren't required | |
524 | anymore. */ | |
525 | extern void prune_inferiors (void); | |
526 | ||
527 | extern int number_of_inferiors (void); | |
528 | ||
a79b8f6e VP |
529 | extern struct inferior *add_inferior_with_spaces (void); |
530 | ||
c906108c | 531 | #endif /* !defined (INFERIOR_H) */ |