aboutsummaryrefslogtreecommitdiff
path: root/gdb/progspace.h
diff options
context:
space:
mode:
Diffstat (limited to 'gdb/progspace.h')
-rw-r--r--gdb/progspace.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/gdb/progspace.h b/gdb/progspace.h
index 0a762e6..a480f56 100644
--- a/gdb/progspace.h
+++ b/gdb/progspace.h
@@ -39,7 +39,7 @@ struct inferior;
struct exec;
struct address_space;
struct program_space;
-struct so_list;
+struct shobj;
typedef std::list<std::unique_ptr<objfile>> objfile_list;
@@ -255,7 +255,7 @@ struct program_space
struct objfile *objfile_for_address (CORE_ADDR address);
/* Return the list of all the solibs in this program space. */
- intrusive_list<struct so_list> &solibs ()
+ intrusive_list<shobj> &solibs ()
{ return so_list; }
/* Close and clear exec_bfd. If we end up with no target sections
@@ -359,14 +359,14 @@ struct program_space
/* List of shared objects mapped into this space. Managed by
solib.c. */
- intrusive_list<struct so_list> so_list;
+ intrusive_list<shobj> so_list;
/* Number of calls to solib_add. */
unsigned int solib_add_generation = 0;
/* When an solib is added, it is also added to this vector. This
is so we can properly report solib changes to the user. */
- std::vector<struct so_list *> added_solibs;
+ std::vector<shobj *> added_solibs;
/* When an solib is removed, its name is added to this vector.
This is so we can properly report solib changes to the user. */