diff options
author | Simon Marchi <simon.marchi@polymtl.ca> | 2024-07-25 13:41:37 -0400 |
---|---|---|
committer | Simon Marchi <simon.marchi@efficios.com> | 2024-08-12 10:21:15 -0400 |
commit | 10ac7e80c01125d1b2754763066dae35b13e6cb0 (patch) | |
tree | ef734268077134223b288f2dc91cf4f763e67590 /gdb/solist.h | |
parent | 554822d670c6272fe991c5fcbdfb41433b182b9e (diff) | |
download | binutils-10ac7e80c01125d1b2754763066dae35b13e6cb0.zip binutils-10ac7e80c01125d1b2754763066dae35b13e6cb0.tar.gz binutils-10ac7e80c01125d1b2754763066dae35b13e6cb0.tar.bz2 |
gdb: remove find_and_open_solib so_list method
Now that the nto port is removed, this is unused.
Change-Id: I86565310cdbcde17a837eb10585cdd153f4f03d8
Approved-by: Kevin Buettner <kevinb@redhat.com>
Diffstat (limited to 'gdb/solist.h')
-rw-r--r-- | gdb/solist.h | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/gdb/solist.h b/gdb/solist.h index f0d2208..6b2a97a 100644 --- a/gdb/solist.h +++ b/gdb/solist.h @@ -132,14 +132,6 @@ struct solib_ops /* Find and open shared library binary file. */ gdb_bfd_ref_ptr (*bfd_open) (const char *pathname); - /* Optional extra hook for finding and opening a solib. - If TEMP_PATHNAME is non-NULL: If the file is successfully opened a - pointer to a malloc'd and realpath'd copy of SONAME is stored there, - otherwise NULL is stored there. */ - int (*find_and_open_solib) (const char *soname, - unsigned o_flags, - gdb::unique_xmalloc_ptr<char> *temp_pathname); - /* Given two so_list objects, one from the GDB thread list and another from the list returned by current_sos, return 1 if they represent the same library. |