diff options
author | Simon Marchi <simon.marchi@efficios.com> | 2023-10-02 15:57:46 -0400 |
---|---|---|
committer | Simon Marchi <simon.marchi@efficios.com> | 2023-10-19 10:57:51 -0400 |
commit | ae4bf24404a134d96bc1844fc949ca518df698f8 (patch) | |
tree | 9a96c655e4c2647a668b21fb722aafef96859216 /gdb/solist.h | |
parent | 94d5c64878a75c573c98502497cd2118720e8bbe (diff) | |
download | gdb-ae4bf24404a134d96bc1844fc949ca518df698f8.zip gdb-ae4bf24404a134d96bc1844fc949ca518df698f8.tar.gz gdb-ae4bf24404a134d96bc1844fc949ca518df698f8.tar.bz2 |
gdb: rename lm_info_base to lm_info
The base class doesn't need to have "_base" in its name, all the
sub-classes have a specific suffix.
Change-Id: I87652105cfedd87898770a81f0eda343ff7f2bdb
Approved-By: Pedro Alves <pedro@palves.net>
Reviewed-By: Reviewed-By: Lancelot Six <lancelot.six@amd.com>
Diffstat (limited to 'gdb/solist.h')
-rw-r--r-- | gdb/solist.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/solist.h b/gdb/solist.h index 8b80ed4..51b1ceb 100644 --- a/gdb/solist.h +++ b/gdb/solist.h @@ -27,7 +27,7 @@ /* Base class for target-specific link map information. */ -struct lm_info_base +struct lm_info { }; @@ -43,7 +43,7 @@ struct so_list 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 |