Remove current_target_so_ops

current_target_so_ops is only set in a single place.  It seems better
to simply remove it.
This commit is contained in:
Tom Tromey 2022-08-08 10:14:53 -06:00
parent 430676bc51
commit 5898c79ae6
3 changed files with 3 additions and 14 deletions

View file

@ -453,9 +453,4 @@ _initialize_solib_target ()
solib_target_so_ops.in_dynsym_resolve_code
= solib_target_in_dynsym_resolve_code;
solib_target_so_ops.bfd_open = solib_bfd_open;
/* Set current_target_so_ops to solib_target_so_ops if not already
set. */
if (current_target_so_ops == 0)
current_target_so_ops = &solib_target_so_ops;
}

View file

@ -53,6 +53,7 @@
#include "debuginfod-support.h"
#include "source.h"
#include "cli/cli-style.h"
#include "solib-target.h"
/* Architecture-specific operations. */
@ -67,8 +68,8 @@ solib_ops (struct gdbarch *gdbarch)
const struct target_so_ops *result = solib_data.get (gdbarch);
if (result == nullptr)
{
result = current_target_so_ops;
set_solib_ops (gdbarch, current_target_so_ops);
result = &solib_target_so_ops;
set_solib_ops (gdbarch, &solib_target_so_ops);
}
return result;
}
@ -84,10 +85,6 @@ set_solib_ops (struct gdbarch *gdbarch, const struct target_so_ops *new_ops)
/* external data declarations */
/* FIXME: gdbarch needs to control this variable, or else every
configuration needs to call set_solib_ops. */
struct target_so_ops *current_target_so_ops;
/* Local function prototypes */
/* If non-empty, this is a search path for loading non-absolute shared library

View file

@ -194,7 +194,4 @@ extern gdb_bfd_ref_ptr solib_bfd_fopen (const char *pathname, int fd);
/* Find solib binary file and open it. */
extern gdb_bfd_ref_ptr solib_bfd_open (const char *in_pathname);
/* FIXME: gdbarch needs to control this variable. */
extern struct target_so_ops *current_target_so_ops;
#endif