diff options
author | Daniel Jacobowitz <drow@false.org> | 2003-12-14 20:28:56 +0000 |
---|---|---|
committer | Daniel Jacobowitz <drow@false.org> | 2003-12-14 20:28:56 +0000 |
commit | 0c6f48899279371568f8e0d7d94c9c2513b021d6 (patch) | |
tree | 552740a212dbe677b2407f14ff09dd07bf07eed6 /gdb/somsolib.h | |
parent | d65bf6c15a506c2ab4b723a292714f5abdccb343 (diff) | |
download | gdb-0c6f48899279371568f8e0d7d94c9c2513b021d6.zip gdb-0c6f48899279371568f8e0d7d94c9c2513b021d6.tar.gz gdb-0c6f48899279371568f8e0d7d94c9c2513b021d6.tar.bz2 |
Merge drow-cplus-branch to:
cvs rtag -D 2003-12-14 00:00:00 UTC drow-cplus-merge-20031214 gdb+dejagnu
Diffstat (limited to 'gdb/somsolib.h')
-rw-r--r-- | gdb/somsolib.h | 21 |
1 files changed, 17 insertions, 4 deletions
diff --git a/gdb/somsolib.h b/gdb/somsolib.h index 4b23760..c241411 100644 --- a/gdb/somsolib.h +++ b/gdb/somsolib.h @@ -1,6 +1,7 @@ /* HP SOM Shared library declarations for GDB, the GNU Debugger. - Copyright 1992, 1994, 1995, 1998, 1999, 2000 - Free Software Foundation, Inc. + + Copyright 1992, 1994, 1995, 1998, 1999, 2000, 2003 Free Software + Foundation, Inc. This file is part of GDB. @@ -22,6 +23,9 @@ Written by the Center for Software Science at the Univerity of Utah and by Cygnus Support. */ +#ifndef SOMSOLIB_H +#define SOMSOLIB_H + /* Forward decl's for prototypes */ struct target_ops; struct objfile; @@ -36,8 +40,8 @@ extern void som_solib_add (char *, int, struct target_ops *, int); extern CORE_ADDR som_solib_get_got_by_pc (CORE_ADDR); -extern int -som_solib_section_offsets (struct objfile *, struct section_offsets *); +extern int som_solib_section_offsets (struct objfile *, + struct section_offsets *); /* Function to be called when the inferior starts up, to discover the names of shared libraries that are dynamically linked, the base addresses to @@ -163,3 +167,12 @@ extern char *som_solib_address (CORE_ADDR); /* somsolib.c */ /* If ADDR lies in a shared library, return its name. */ #define PC_SOLIB(addr) som_solib_address (addr) + +extern CORE_ADDR som_solib_get_solib_by_pc (CORE_ADDR addr); + +struct so_list; +extern CORE_ADDR so_lib_thread_start_addr (struct so_list *so); + +extern void no_shared_libraries (char *ignored, int from_tty); + +#endif |