/* Our private data in struct so_list. */
-struct lm_info_aix : public lm_info_base
+struct lm_info_aix : public lm_info
{
/* The name of the file mapped by the loader. Apart from the entry
for the main executable, this is usually a shared library (which,
/* Link map info to include in an allocated so_list entry. */
-struct lm_info_darwin : public lm_info_base
+struct lm_info_darwin : public lm_info
{
/* The target location of lm. */
CORE_ADDR lm_addr = 0;
/* Link map info to include in an allocated so_list entry */
-struct lm_info_dsbt : public lm_info_base
+struct lm_info_dsbt : public lm_info
{
~lm_info_dsbt ()
{
/* Link map info to include in an allocated so_list entry. */
-struct lm_info_frv : public lm_info_base
+struct lm_info_frv : public lm_info
{
~lm_info_frv ()
{
/* Link map info to include in an allocated so_list entry. */
-struct lm_info_svr4 : public lm_info_base
+struct lm_info_svr4 : public lm_info
{
/* Amount by which addresses in the binary should be relocated to
match the inferior. The direct inferior value is L_ADDR_INFERIOR.
#include "inferior.h"
/* Private data for each loaded library. */
-struct lm_info_target : public lm_info_base
+struct lm_info_target : public lm_info
{
/* The library's name. The name is normally kept in the struct
so_list; it is only here during XML parsing. */
/* Base class for target-specific link map information. */
-struct lm_info_base
+struct lm_info
{
};
will be a copy of struct link_map from the user process, but
it need not be; it can be any collection of data needed to
traverse the dynamic linker's data structures. */
- lm_info_base *lm_info = nullptr;
+ struct lm_info *lm_info = nullptr;
/* Shared object file name, exactly as it appears in the
inferior's link map. This may be a relative path, or something