diff options
author | Daniel Jacobowitz <drow@false.org> | 2007-05-16 14:07:56 +0000 |
---|---|---|
committer | Daniel Jacobowitz <drow@false.org> | 2007-05-16 14:07:56 +0000 |
commit | 7d522c902eb745c9d99e88d1c62c7bb4d23f4ddd (patch) | |
tree | bd64c8954b4630d7cfc96b2d6b2cea940315bdb5 /gdb/solib.h | |
parent | 5d51a2dbdbe9975039c68f7b571c46931783a775 (diff) | |
download | gdb-7d522c902eb745c9d99e88d1c62c7bb4d23f4ddd.zip gdb-7d522c902eb745c9d99e88d1c62c7bb4d23f4ddd.tar.gz gdb-7d522c902eb745c9d99e88d1c62c7bb4d23f4ddd.tar.bz2 |
* config/mips/linux.mt (DEPRECATED_TM_FILE): Delete.
* config/mips/tm-linux.h: Delete.
* mips-linux-tdep.c (mips_svr4_so_ops): New.
(mips_linux_in_dynsym_resolve_code): Make static. Use
svr4_in_dynsym_resolve_code.
(mips_linux_init_abi): Initialize mips_svr4_so_ops. Call
set_solib_ops.
* solib-svr4.c (svr4_in_dynsym_resolve_code, svr4_so_ops): Make
global.
* solib-svr4.h (svr4_so_ops, svr4_in_dynsym_resolve_code): Declare.
* Makefile.in (mips-linux-tdep.o): Update.
* solib.c (set_solib_ops): New.
(current_target_so_ops): Update comment.
* solib.h (set_solib_ops): New prototype.
Diffstat (limited to 'gdb/solib.h')
-rw-r--r-- | gdb/solib.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/gdb/solib.h b/gdb/solib.h index 0ab9efc..b937dce 100644 --- a/gdb/solib.h +++ b/gdb/solib.h @@ -26,6 +26,7 @@ /* Forward decl's for prototypes */ struct so_list; struct target_ops; +struct target_so_ops; /* Called when we free all symtabs, to free the shared library information as well. */ @@ -57,4 +58,9 @@ extern int in_solib_dynsym_resolve_code (CORE_ADDR); extern void no_shared_libraries (char *ignored, int from_tty); +/* Set the solib operations for GDBARCH to NEW_OPS. */ + +extern void set_solib_ops (struct gdbarch *gdbarch, + struct target_so_ops *new_ops); + #endif /* SOLIB_H */ |