aboutsummaryrefslogtreecommitdiff
path: root/gdb/tm-sunos.h
diff options
context:
space:
mode:
authorJohn Gilmore <gnu@cygnus>1991-08-14 00:02:26 +0000
committerJohn Gilmore <gnu@cygnus>1991-08-14 00:02:26 +0000
commit5ac449d90c0fa68a04ad6bc9d6583c88ced5523c (patch)
tree412413e278b5eb94b20c607a8ad86775953d05b6 /gdb/tm-sunos.h
parentc561ca5dfb38b4415642c3ace584f4eb27776ef3 (diff)
downloadgdb-5ac449d90c0fa68a04ad6bc9d6583c88ced5523c.zip
gdb-5ac449d90c0fa68a04ad6bc9d6583c88ced5523c.tar.gz
gdb-5ac449d90c0fa68a04ad6bc9d6583c88ced5523c.tar.bz2
* solib.c (solib_add): New argument is the target_ops whose
section list is to be added to, if any. Reallocate the sections in that target to add any that come from shared libs. (throughout) so_sections renamed to sections. (solib_xfer_memory): Deleted. * tm-sunos.h (SOLIB_ADD): Add target argument. (SOLIB_XFER_MEMORY): Delete. * xm-sun3os4.h, xm-sun4os4.h: Define BROKEN_LARGE_ALLOCA, and add comment explaining shared library screw.
Diffstat (limited to 'gdb/tm-sunos.h')
-rw-r--r--gdb/tm-sunos.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/gdb/tm-sunos.h b/gdb/tm-sunos.h
index c9aae94..43657d2 100644
--- a/gdb/tm-sunos.h
+++ b/gdb/tm-sunos.h
@@ -19,13 +19,11 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
/* This is for SunOS version 4, not for earlier versions. */
#define CLEAR_SOLIB clear_solib
-#define SOLIB_ADD(filename, from_tty) solib_add (filename, from_tty)
-#define SOLIB_XFER_MEMORY(memaddr, myaddr, len, write) solib_xfer_memory (memaddr, myaddr, len, write)
+#define SOLIB_ADD(filename, from_tty, targ) solib_add (filename, from_tty, targ)
/* If we can't set a breakpoint, and it's in a shared library, just
disable it. */
#define DISABLE_UNSETTABLE_BREAK(addr) solib_address(addr)
extern int solib_address (); /* solib.c */
-extern int solib_xfer_memory ();
extern void solib_add ();
extern void clear_solib ();