]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gdbsupport/common-inferior.h
Update copyright year range in header of all files managed by GDB
[thirdparty/binutils-gdb.git] / gdbsupport / common-inferior.h
CommitLineData
2090129c
SDJ
1/* Functions to deal with the inferior being executed on GDB or
2 GDBserver.
3
213516ef 4 Copyright (C) 1986-2023 Free Software Foundation, Inc.
2090129c
SDJ
5
6 This file is part of GDB.
7
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
10 the Free Software Foundation; either version 3 of the License, or
11 (at your option) any later version.
12
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.
17
18 You should have received a copy of the GNU General Public License
19 along with this program. If not, see <http://www.gnu.org/licenses/>. */
20
1a5c2598
TT
21#ifndef COMMON_COMMON_INFERIOR_H
22#define COMMON_COMMON_INFERIOR_H
2090129c 23
8c4b5f3d
MW
24#include "gdbsupport/array-view.h"
25
2090129c
SDJ
26/* Return the exec wrapper to be used when starting the inferior, or NULL
27 otherwise. */
28extern const char *get_exec_wrapper ();
29
30/* Return the name of the executable file as a string.
31 ERR nonzero means get error if there is none specified;
32 otherwise return 0 in that case. */
d9fa87f4 33extern const char *get_exec_file (int err);
2090129c 34
11bd012e
SM
35/* Return the inferior's current working directory.
36
37 If it is not set, the string is empty. */
38extern const std::string &get_inferior_cwd ();
d092c5a2 39
80fd2826
TT
40/* Whether to start up the debuggee under a shell.
41
42 If startup-with-shell is set, GDB's "run" will attempt to start up
43 the debuggee under a shell. This also happens when using GDBserver
44 under extended remote mode.
45
46 This is in order for argument-expansion to occur. E.g.,
47
48 (gdb) run *
49
50 The "*" gets expanded by the shell into a list of files.
51
52 While this is a nice feature, it may be handy to bypass the shell
53 in some cases. To disable this feature, do "set startup-with-shell
54 false".
55
56 The catch-exec traps expected during start-up will be one more if
57 the target is started up with a shell. */
58extern bool startup_with_shell;
59
92651b1d
MW
60/* Compute command-line string given argument vector. This does the
61 same shell processing as fork_inferior. */
8c4b5f3d
MW
62extern std::string
63construct_inferior_arguments (gdb::array_view<char * const>);
92651b1d 64
1a5c2598 65#endif /* COMMON_COMMON_INFERIOR_H */