Rename native-only terminal related functions.
[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
ecd75fc8 4 Copyright (C) 1986-2014 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;
67a2b77e 33
d26e3629
KY
34#include "ptid.h"
35
c906108c
SS
36/* For bpstat. */
37#include "breakpoint.h"
38
2ea28649 39/* For enum gdb_signal. */
c906108c
SS
40#include "target.h"
41
aa0cd9c1
AC
42/* For struct frame_id. */
43#include "frame.h"
44
6c95b8df 45#include "progspace.h"
8e260fc0 46#include "registry.h"
6c95b8df 47
16c381f0
JK
48struct infcall_suspend_state;
49struct infcall_control_state;
7a292a7a 50
16c381f0
JK
51extern struct infcall_suspend_state *save_infcall_suspend_state (void);
52extern struct infcall_control_state *save_infcall_control_state (void);
c906108c 53
16c381f0
JK
54extern void restore_infcall_suspend_state (struct infcall_suspend_state *);
55extern void restore_infcall_control_state (struct infcall_control_state *);
b89667eb 56
16c381f0
JK
57extern struct cleanup *make_cleanup_restore_infcall_suspend_state
58 (struct infcall_suspend_state *);
59extern struct cleanup *make_cleanup_restore_infcall_control_state
60 (struct infcall_control_state *);
b89667eb 61
16c381f0
JK
62extern void discard_infcall_suspend_state (struct infcall_suspend_state *);
63extern void discard_infcall_control_state (struct infcall_control_state *);
7a292a7a 64
16c381f0
JK
65extern struct regcache *
66 get_infcall_suspend_state_regcache (struct infcall_suspend_state *);
b89667eb 67
ce696e05
KB
68/* Save value of inferior_ptid so that it may be restored by
69 a later call to do_cleanups(). Returns the struct cleanup
70 pointer needed for later doing the cleanup. */
71extern struct cleanup * save_inferior_ptid (void);
72
a14ed312 73extern void set_sigint_trap (void);
c906108c 74
a14ed312 75extern void clear_sigint_trap (void);
c906108c 76
3cb3b8df 77/* Set/get file name for default use for standard in/out in the inferior. */
c906108c 78
3cb3b8df
BR
79extern void set_inferior_io_terminal (const char *terminal_name);
80extern const char *get_inferior_io_terminal (void);
c906108c 81
39f77062 82/* Collected pid, tid, etc. of the debugged inferior. When there's
dfd4cc63 83 no inferior, ptid_get_pid (inferior_ptid) will be 0. */
c906108c 84
39f77062 85extern ptid_t inferior_ptid;
c906108c 86
43ff13b4
JM
87/* Are we simulating synchronous execution? This is used in async gdb
88 to implement the 'run', 'continue' etc commands, which will not
1777feb0 89 redisplay the prompt until the execution is actually over. */
43ff13b4
JM
90extern int sync_execution;
91
1777feb0 92/* Inferior environment. */
c906108c 93
a14ed312 94extern void clear_proceed_status (void);
c906108c 95
2ea28649 96extern void proceed (CORE_ADDR, enum gdb_signal, int);
c906108c 97
d4db2f36
PA
98extern int sched_multi;
99
5fbbeb29
CF
100/* When set, stop the 'step' command if we enter a function which has
101 no line number information. The normal behavior is that we step
102 over such function. */
103extern int step_stop_if_no_debug;
104
ad52ddc6
PA
105/* If set, the inferior should be controlled in non-stop mode. In
106 this mode, each thread is controlled independently. Execution
b021a221 107 commands apply only to the selected thread by default, and stop
ad52ddc6
PA
108 events stop only the thread that had the event -- the other threads
109 are kept running freely. */
110extern int non_stop;
111
03583c20
UW
112/* When set (default), the target should attempt to disable the operating
113 system's address space randomization feature when starting an inferior. */
114extern int disable_randomization;
115
a14ed312 116extern void generic_mourn_inferior (void);
c906108c 117
9898f801
UW
118extern CORE_ADDR unsigned_pointer_to_address (struct gdbarch *gdbarch,
119 struct type *type,
b60c417a 120 const gdb_byte *buf);
9898f801
UW
121extern void unsigned_address_to_pointer (struct gdbarch *gdbarch,
122 struct type *type, gdb_byte *buf,
ac2e2ef7 123 CORE_ADDR addr);
9898f801
UW
124extern CORE_ADDR signed_pointer_to_address (struct gdbarch *gdbarch,
125 struct type *type,
b60c417a 126 const gdb_byte *buf);
9898f801
UW
127extern void address_to_signed_pointer (struct gdbarch *gdbarch,
128 struct type *type, gdb_byte *buf,
ac2e2ef7 129 CORE_ADDR addr);
4478b372 130
e4c8541f 131extern void wait_for_inferior (void);
c906108c 132
24291992
PA
133extern void prepare_for_detach (void);
134
a14ed312 135extern void fetch_inferior_event (void *);
43ff13b4 136
a14ed312 137extern void init_wait_for_inferior (void);
c906108c 138
a14ed312 139extern void reopen_exec_file (void);
c906108c
SS
140
141/* The `resume' routine should only be called in special circumstances.
142 Normally, use `proceed', which handles a lot of bookkeeping. */
143
2ea28649 144extern void resume (int, enum gdb_signal);
c906108c 145
09cee04b
PA
146extern ptid_t user_visible_resume_ptid (int step);
147
9da8c2a0
PA
148extern void insert_step_resume_breakpoint_at_sal (struct gdbarch *,
149 struct symtab_and_line ,
150 struct frame_id);
151
c906108c
SS
152/* From misc files */
153
0ab7a791
AC
154extern void default_print_registers_info (struct gdbarch *gdbarch,
155 struct ui_file *file,
156 struct frame_info *frame,
157 int regnum, int all);
666e11c5 158
0a4f40a2 159extern void child_terminal_info (struct target_ops *self, const char *, int);
c906108c 160
a14ed312 161extern void term_info (char *, int);
c906108c 162
d6b64346
PA
163extern void child_terminal_save_ours (struct target_ops *self);
164
165extern void child_terminal_ours (struct target_ops *self);
166
167extern void child_terminal_ours_for_output (struct target_ops *self);
c906108c 168
d6b64346 169extern void child_terminal_inferior (struct target_ops *self);
c906108c 170
d6b64346 171extern void child_terminal_init (struct target_ops *self);
c906108c 172
d6b64346 173extern void child_terminal_init_with_pgrp (int pgrp);
c906108c 174
c906108c
SS
175/* From fork-child.c */
176
136d6dae
VP
177extern int fork_inferior (char *, char *, char **,
178 void (*)(void),
e69860f1
TG
179 void (*)(int), void (*)(void), char *,
180 void (*)(const char *,
181 char * const *, char * const *));
c906108c
SS
182
183
a14ed312 184extern void startup_inferior (int);
c906108c 185
bd57a748 186extern char *construct_inferior_arguments (int, char **);
552c04a7 187
c906108c
SS
188/* From infrun.c */
189
ccce17b0 190extern unsigned int debug_infrun;
628fe4e4
JK
191
192extern int stop_on_solib_events;
193
8621d6a9 194extern void start_remote (int from_tty);
c906108c 195
a14ed312 196extern void normal_stop (void);
c906108c 197
a14ed312 198extern int signal_stop_state (int);
c906108c 199
a14ed312 200extern int signal_print_state (int);
c906108c 201
a14ed312 202extern int signal_pass_state (int);
c906108c 203
a14ed312 204extern int signal_stop_update (int, int);
d4f3574e 205
a14ed312 206extern int signal_print_update (int, int);
d4f3574e 207
a14ed312 208extern int signal_pass_update (int, int);
d4f3574e 209
39f77062
KB
210extern void get_last_target_status(ptid_t *ptid,
211 struct target_waitstatus *status);
e02bc4cc 212
6604731b
DJ
213extern void follow_inferior_reset_breakpoints (void);
214
edb3359d
DJ
215void set_step_info (struct frame_info *frame, struct symtab_and_line sal);
216
0c557179
SDJ
217/* Clear the convenience variables associated with the exit of the
218 inferior. Currently, those variables are $_exitcode and
219 $_exitsignal. */
220
221extern void clear_exit_convenience_vars (void);
222
c906108c
SS
223/* From infcmd.c */
224
281b533b
DJ
225extern void post_create_inferior (struct target_ops *, int);
226
a14ed312 227extern void attach_command (char *, int);
c906108c 228
a250df2e 229extern char *get_inferior_args (void);
07091751 230
3f81c18a 231extern void set_inferior_args (char *);
07091751 232
552c04a7
TT
233extern void set_inferior_args_vector (int, char **);
234
36dc181b
EZ
235extern void registers_info (char *, int);
236
77ebaa5a
VP
237extern void continue_1 (int all_threads);
238
77ebaa5a
VP
239extern void interrupt_target_1 (int all_threads);
240
186c406b
TT
241extern void delete_longjmp_breakpoint_cleanup (void *arg);
242
6418d433
VP
243extern void detach_command (char *, int);
244
1941c569
PA
245extern void notice_new_inferior (ptid_t, int, int);
246
6a3a010b 247extern struct value *get_return_value (struct value *function,
cc72b2a2
KP
248 struct type *value_type);
249
98882a26
PA
250/* Whether to start up the debuggee under a shell.
251
252 If startup-with-shell is set, GDB's "run" will attempt to start up
253 the debuggee under a shell.
254
255 This is in order for argument-expansion to occur. E.g.,
256
257 (gdb) run *
258
259 The "*" gets expanded by the shell into a list of files.
260
261 While this is a nice feature, it may be handy to bypass the shell
262 in some cases. To disable this feature, do "set startup-with-shell
263 false".
264
265 The catch-exec traps expected during start-up will be one more if
266 the target is started up with a shell. */
267extern int startup_with_shell;
268
c906108c
SS
269/* Address at which inferior stopped. */
270
271extern CORE_ADDR stop_pc;
272
c906108c
SS
273/* Nonzero if stopped due to completion of a stack dummy routine. */
274
aa7d318d 275extern enum stop_stack_kind stop_stack_dummy;
c906108c
SS
276
277/* Nonzero if program stopped due to a random (unexpected) signal in
278 inferior process. */
279
280extern int stopped_by_random_signal;
281
a49f981f
MS
282/* STEP_OVER_ALL means step over all subroutine calls.
283 STEP_OVER_UNDEBUGGABLE means step over calls to undebuggable functions.
284 STEP_OVER_NONE means don't step over any subroutine calls. */
c906108c 285
5fbbeb29
CF
286enum step_over_calls_kind
287 {
288 STEP_OVER_NONE,
289 STEP_OVER_ALL,
a4acd088
CF
290 STEP_OVER_UNDEBUGGABLE
291 };
292
b0f4b84b
DJ
293/* Anything but NO_STOP_QUIETLY means we expect a trap and the caller
294 will handle it themselves. STOP_QUIETLY is used when running in
295 the shell before the child program has been exec'd and when running
296 through shared library loading. STOP_QUIETLY_REMOTE is used when
297 setting up a remote connection; it is like STOP_QUIETLY_NO_SIGSTOP
298 except that there is no need to hide a signal. */
c54cfec8 299
1777feb0 300/* It is also used after attach, due to attaching to a process. This
c54cfec8
EZ
301 is a bit trickier. When doing an attach, the kernel stops the
302 debuggee with a SIGSTOP. On newer GNU/Linux kernels (>= 2.5.61)
1777feb0 303 the handling of SIGSTOP for a ptraced process has changed. Earlier
c54cfec8
EZ
304 versions of the kernel would ignore these SIGSTOPs, while now
305 SIGSTOP is treated like any other signal, i.e. it is not muffled.
306
307 If the gdb user does a 'continue' after the 'attach', gdb passes
308 the global variable stop_signal (which stores the signal from the
309 attach, SIGSTOP) to the ptrace(PTRACE_CONT,...) call. This is
310 problematic, because the kernel doesn't ignore such SIGSTOP
1777feb0 311 now. I.e. it is reported back to gdb, which in turn presents it
c54cfec8
EZ
312 back to the user.
313
314 To avoid the problem, we use STOP_QUIETLY_NO_SIGSTOP, which allows
315 gdb to clear the value of stop_signal after the attach, so that it
316 is not passed back down to the kernel. */
317
318enum stop_kind
319 {
320 NO_STOP_QUIETLY = 0,
321 STOP_QUIETLY,
b0f4b84b 322 STOP_QUIETLY_REMOTE,
c54cfec8
EZ
323 STOP_QUIETLY_NO_SIGSTOP
324 };
c906108c 325
b2175913
MS
326/* Reverse execution. */
327enum exec_direction_kind
328 {
329 EXEC_FORWARD,
d8b34453 330 EXEC_REVERSE
b2175913
MS
331 };
332
32231432
PA
333/* The current execution direction. This should only be set to enum
334 exec_direction_kind values. It is only an int to make it
335 compatible with make_cleanup_restore_integer. */
336extern int execution_direction;
b2175913 337
642fd101
DE
338/* Save register contents here when executing a "finish" command or are
339 about to pop a stack dummy frame, if-and-only-if proceed_to_finish is set.
c906108c
SS
340 Thus this contains the return value from the called function (assuming
341 values are returned in a register). */
342
72cec141 343extern struct regcache *stop_registers;
c906108c 344
237fc4c9
PA
345/* True if we are debugging displaced stepping. */
346extern int debug_displaced;
347
348/* Dump LEN bytes at BUF in hex to FILE, followed by a newline. */
349void displaced_step_dump_bytes (struct ui_file *file,
350 const gdb_byte *buf, size_t len);
351
9a1edae6 352struct displaced_step_closure *get_displaced_step_closure_by_addr (CORE_ADDR addr);
c906108c 353\f
faaf634c 354/* Possible values for gdbarch_call_dummy_location. */
c906108c 355#define ON_STACK 1
c906108c
SS
356#define AT_ENTRY_POINT 4
357
98882a26
PA
358/* Number of traps that happen between exec'ing the shell to run an
359 inferior and when we finally get to the inferior code, not counting
360 the exec for the shell. This is 1 on most implementations.
361 Overridden in nm.h files. */
c906108c 362#if !defined(START_INFERIOR_TRAPS_EXPECTED)
98882a26 363#define START_INFERIOR_TRAPS_EXPECTED 1
c906108c 364#endif
b77209e0
PA
365
366struct private_inferior;
367
16c381f0
JK
368/* Inferior process specific part of `struct infcall_control_state'.
369
370 Inferior thread counterpart is `struct thread_control_state'. */
371
372struct inferior_control_state
373{
374 /* See the definition of stop_kind above. */
375 enum stop_kind stop_soon;
376};
377
378/* Inferior process specific part of `struct infcall_suspend_state'.
379
380 Inferior thread counterpart is `struct thread_suspend_state'. */
381
dd80ea3c 382#if 0 /* Currently unused and empty structures are not valid C. */
16c381f0
JK
383struct inferior_suspend_state
384{
385};
dd80ea3c 386#endif
16c381f0 387
b77209e0
PA
388/* GDB represents the state of each program execution with an object
389 called an inferior. An inferior typically corresponds to a process
390 but is more general and applies also to targets that do not have a
391 notion of processes. Each run of an executable creates a new
392 inferior, as does each attachment to an existing process.
393 Inferiors have unique internal identifiers that are different from
394 target process ids. Each inferior may in turn have multiple
395 threads running in it. */
396
397struct inferior
398{
399 /* Pointer to next inferior in singly-linked list of inferiors. */
400 struct inferior *next;
401
402 /* Convenient handle (GDB inferior id). Unique across all
403 inferiors. */
404 int num;
405
406 /* Actual target inferior id, usually, a process id. This matches
407 the ptid_t.pid member of threads of this inferior. */
408 int pid;
e714e1bf
UW
409 /* True if the PID was actually faked by GDB. */
410 int fake_pid_p;
b77209e0 411
16c381f0
JK
412 /* State of GDB control of inferior process execution.
413 See `struct inferior_control_state'. */
414 struct inferior_control_state control;
415
416 /* State of inferior process to restore after GDB is done with an inferior
417 call. See `struct inferior_suspend_state'. */
dd80ea3c 418#if 0 /* Currently unused and empty structures are not valid C. */
16c381f0 419 struct inferior_suspend_state suspend;
dd80ea3c 420#endif
16c381f0 421
6c95b8df
PA
422 /* True if this was an auto-created inferior, e.g. created from
423 following a fork; false, if this inferior was manually added by
424 the user, and we should not attempt to prune it
425 automatically. */
426 int removable;
427
428 /* The address space bound to this inferior. */
429 struct address_space *aspace;
430
431 /* The program space bound to this inferior. */
432 struct program_space *pspace;
433
3f81c18a
VP
434 /* The arguments string to use when running. */
435 char *args;
436
437 /* The size of elements in argv. */
438 int argc;
439
440 /* The vector version of arguments. If ARGC is nonzero,
441 then we must compute ARGS from this (via the target).
442 This is always coming from main's argv and therefore
443 should never be freed. */
444 char **argv;
445
446 /* The name of terminal device to use for I/O. */
447 char *terminal;
448
449 /* Environment to use for running inferior,
450 in format described in environ.h. */
451 struct gdb_environ *environment;
452
181e7f93
PA
453 /* Nonzero if this child process was attached rather than
454 forked. */
455 int attach_flag;
456
6c95b8df
PA
457 /* If this inferior is a vfork child, then this is the pointer to
458 its vfork parent, if GDB is still attached to it. */
459 struct inferior *vfork_parent;
460
461 /* If this process is a vfork parent, this is the pointer to the
462 child. Since a vfork parent is left frozen by the kernel until
463 the child execs or exits, a process can only have one vfork child
464 at a given time. */
465 struct inferior *vfork_child;
466
467 /* True if this inferior should be detached when it's vfork sibling
468 exits or execs. */
469 int pending_detach;
470
471 /* True if this inferior is a vfork parent waiting for a vfork child
472 not under our control to be done with the shared memory region,
473 either by exiting or execing. */
474 int waiting_for_vfork_done;
475
24291992
PA
476 /* True if we're in the process of detaching from this inferior. */
477 int detaching;
478
e0ba6746
PA
479 /* What is left to do for an execution command after any thread of
480 this inferior stops. For continuations associated with a
481 specific thread, see `struct thread_info'. */
482 struct continuation *continuations;
483
b77209e0
PA
484 /* Private data used by the target vector implementation. */
485 struct private_inferior *private;
a96d9b2e 486
8cf64490
TT
487 /* HAS_EXIT_CODE is true if the inferior exited with an exit code.
488 In this case, the EXIT_CODE field is also valid. */
489 int has_exit_code;
490 LONGEST exit_code;
491
7dcd53a0
TT
492 /* Default flags to pass to the symbol reading functions. These are
493 used whenever a new objfile is created. The valid values come
494 from enum symfile_add_flags. */
495 int symfile_flags;
496
6ecd4729
PA
497 /* Info about an inferior's target description (if it's fetched; the
498 user supplied description's filename, if any; etc.). */
499 struct target_desc_info *tdesc_info;
500
501 /* The architecture associated with the inferior through the
502 connection to the target.
503
504 The architecture vector provides some information that is really
505 a property of the inferior, accessed through a particular target:
506 ptrace operations; the layout of certain RSP packets; the
507 solib_ops vector; etc. To differentiate architecture accesses to
508 per-inferior/target properties from
509 per-thread/per-frame/per-objfile properties, accesses to
510 per-inferior/target properties should be made through
511 this gdbarch. */
512 struct gdbarch *gdbarch;
513
6c95b8df 514 /* Per inferior data-pointers required by other GDB modules. */
8e260fc0 515 REGISTRY_FIELDS;
b77209e0
PA
516};
517
6c95b8df
PA
518/* Keep a registry of per-inferior data-pointers required by other GDB
519 modules. */
520
8e260fc0 521DECLARE_REGISTRY (inferior);
6c95b8df 522
b77209e0
PA
523/* Create an empty inferior list, or empty the existing one. */
524extern void init_inferior_list (void);
525
526/* Add an inferior to the inferior list, print a message that a new
527 inferior is found, and return the pointer to the new inferior.
528 Caller may use this pointer to initialize the private inferior
529 data. */
530extern struct inferior *add_inferior (int pid);
531
532/* Same as add_inferior, but don't print new inferior notifications to
533 the CLI. */
534extern struct inferior *add_inferior_silent (int pid);
535
536/* Delete an existing inferior list entry, due to inferior exit. */
537extern void delete_inferior (int pid);
538
a79b8f6e
VP
539extern void delete_inferior_1 (struct inferior *todel, int silent);
540
b77209e0
PA
541/* Same as delete_inferior, but don't print new inferior notifications
542 to the CLI. */
543extern void delete_inferior_silent (int pid);
544
545/* Delete an existing inferior list entry, due to inferior detaching. */
546extern void detach_inferior (int pid);
547
6c95b8df
PA
548extern void exit_inferior (int pid);
549
550extern void exit_inferior_silent (int pid);
551
552extern void exit_inferior_num_silent (int num);
553
554extern void inferior_appeared (struct inferior *inf, int pid);
555
82f73884
PA
556/* Get rid of all inferiors. */
557extern void discard_all_inferiors (void);
558
b77209e0
PA
559/* Translate the integer inferior id (GDB's homegrown id, not the system's)
560 into a "pid" (which may be overloaded with extra inferior information). */
561extern int gdb_inferior_id_to_pid (int);
562
563/* Translate a target 'pid' into the integer inferior id (GDB's
564 homegrown id, not the system's). */
565extern int pid_to_gdb_inferior_id (int pid);
566
567/* Boolean test for an already-known pid. */
568extern int in_inferior_list (int pid);
569
570/* Boolean test for an already-known inferior id (GDB's homegrown id,
571 not the system's). */
2c0b251b 572extern int valid_gdb_inferior_id (int num);
b77209e0 573
6c95b8df 574/* Search function to lookup an inferior by target 'pid'. */
b77209e0
PA
575extern struct inferior *find_inferior_pid (int pid);
576
6c95b8df
PA
577/* Search function to lookup an inferior by GDB 'num'. */
578extern struct inferior *find_inferior_id (int num);
579
580/* Find an inferior bound to PSPACE. */
581extern struct inferior *
582 find_inferior_for_program_space (struct program_space *pspace);
583
b77209e0
PA
584/* Inferior iterator function.
585
586 Calls a callback function once for each inferior, so long as the
587 callback function returns false. If the callback function returns
588 true, the iteration will end and the current inferior will be
589 returned. This can be useful for implementing a search for a
590 inferior with arbitrary attributes, or for applying some operation
591 to every inferior.
592
593 It is safe to delete the iterated inferior from the callback. */
594extern struct inferior *iterate_over_inferiors (int (*) (struct inferior *,
595 void *),
596 void *);
597
b77209e0
PA
598/* Returns true if the inferior list is not empty. */
599extern int have_inferiors (void);
600
c35b1492
PA
601/* Returns true if there are any live inferiors in the inferior list
602 (not cores, not executables, real live processes). */
603extern int have_live_inferiors (void);
604
b77209e0
PA
605/* Return a pointer to the current inferior. It is an error to call
606 this if there is no current inferior. */
607extern struct inferior *current_inferior (void);
608
6c95b8df
PA
609extern void set_current_inferior (struct inferior *);
610
611extern struct cleanup *save_current_inferior (void);
612
c65b3e0d
PA
613/* Traverse all inferiors. */
614
615#define ALL_INFERIORS(I) \
616 for ((I) = inferior_list; (I); (I) = (I)->next)
617
6c95b8df
PA
618extern struct inferior *inferior_list;
619
620/* Prune away automatically added inferiors that aren't required
621 anymore. */
622extern void prune_inferiors (void);
623
624extern int number_of_inferiors (void);
625
a79b8f6e
VP
626extern struct inferior *add_inferior_with_spaces (void);
627
d914c394
SS
628extern void update_observer_mode (void);
629
9b224c5e
PA
630extern void update_signals_program_target (void);
631
ab04a2af
TT
632extern void signal_catch_update (const unsigned int *);
633
ed01b82c
PA
634/* In some circumstances we allow a command to specify a numeric
635 signal. The idea is to keep these circumstances limited so that
636 users (and scripts) develop portable habits. For comparison,
637 POSIX.2 `kill' requires that 1,2,3,6,9,14, and 15 work (and using a
638 numeric signal at all is obsolescent. We are slightly more lenient
639 and allow 1-15 which should match host signal numbers on most
640 systems. Use of symbolic signal names is strongly encouraged. */
641
2ea28649 642enum gdb_signal gdb_signal_from_command (int num);
ed01b82c 643
c906108c 644#endif /* !defined (INFERIOR_H) */
This page took 1.235114 seconds and 4 git commands to generate.