diff options
Diffstat (limited to 'gdb/solib-target.h')
-rw-r--r-- | gdb/solib-target.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gdb/solib-target.h b/gdb/solib-target.h index 89ae2bc..4b8f2d6 100644 --- a/gdb/solib-target.h +++ b/gdb/solib-target.h @@ -26,6 +26,8 @@ struct target_solib_ops : solib_ops { + using solib_ops::solib_ops; + void relocate_section_addresses (solib &so, target_section *) const override; owning_intrusive_list<solib> current_sos () const override; bool in_dynsym_resolve_code (CORE_ADDR pc) const override; @@ -33,6 +35,6 @@ struct target_solib_ops : solib_ops /* Return a new solib_ops for systems fetching solibs from the target. */ -solib_ops_up make_target_solib_ops (); +solib_ops_up make_target_solib_ops (program_space *pspace); #endif /* GDB_SOLIB_TARGET_H */ |