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.c | |
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.c')
-rw-r--r-- | gdb/solib.c | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/gdb/solib.c b/gdb/solib.c index 0b5e2e3..d260c12c 100644 --- a/gdb/solib.c +++ b/gdb/solib.c @@ -67,11 +67,21 @@ solib_ops (struct gdbarch *gdbarch) struct target_so_ops **ops = gdbarch_data (gdbarch, solib_data); return *ops; } + +/* Set the solib operations for GDBARCH to NEW_OPS. */ + +void +set_solib_ops (struct gdbarch *gdbarch, struct target_so_ops *new_ops) +{ + struct target_so_ops **ops = gdbarch_data (gdbarch, solib_data); + *ops = new_ops; +} /* external data declarations */ -/* FIXME: gdbarch needs to control this variable */ +/* FIXME: gdbarch needs to control this variable, or else every + configuration needs to call set_solib_ops. */ struct target_so_ops *current_target_so_ops; /* local data declarations */ |