forked from Imagelibrary/binutils-gdb
gdb: make core_target_open static
The core_target_open function is only used in corelow.c, so lets make it static. There should be no user visible changes after this commit.
This commit is contained in:
@@ -59,6 +59,10 @@
|
|||||||
#define O_LARGEFILE 0
|
#define O_LARGEFILE 0
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/* Forward declarations. */
|
||||||
|
|
||||||
|
static void core_target_open (const char *arg, int from_tty);
|
||||||
|
|
||||||
/* A mem_range and the build-id associated with the file mapped into the
|
/* A mem_range and the build-id associated with the file mapped into the
|
||||||
given range. */
|
given range. */
|
||||||
|
|
||||||
@@ -904,9 +908,9 @@ locate_exec_from_corefile_build_id (bfd *abfd, core_target *target,
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/* See gdbcore.h. */
|
/* Open and set up the core file bfd. */
|
||||||
|
|
||||||
void
|
static void
|
||||||
core_target_open (const char *arg, int from_tty)
|
core_target_open (const char *arg, int from_tty)
|
||||||
{
|
{
|
||||||
const char *p;
|
const char *p;
|
||||||
|
|||||||
@@ -124,10 +124,6 @@ extern void (*deprecated_file_changed_hook) (const char *filename);
|
|||||||
|
|
||||||
extern bool write_files;
|
extern bool write_files;
|
||||||
|
|
||||||
/* Open and set up the core file bfd. */
|
|
||||||
|
|
||||||
extern void core_target_open (const char *arg, int from_tty);
|
|
||||||
|
|
||||||
extern void core_file_command (const char *filename, int from_tty);
|
extern void core_file_command (const char *filename, int from_tty);
|
||||||
|
|
||||||
extern void exec_file_attach (const char *filename, int from_tty);
|
extern void exec_file_attach (const char *filename, int from_tty);
|
||||||
|
|||||||
Reference in New Issue
Block a user