From 80d68b1d49a92b6ea0b5b79d9be413f0002ae200 Mon Sep 17 00:00:00 2001 From: Fred Fish Date: Thu, 19 Mar 1992 21:57:15 +0000 Subject: * coffread.c, mipsread.c, xcoffread.c, coffread.c, dbxread.c, elfread.c (coff_symfile_finish): Add function, prototype, and add to the xxxx_sym_fns struct for each file type. Also reformat the xxxx_sym_fns vector to a standard format and add comments. * coffread.c, mipsread.c, xcoffread.c, coffread.c, dbxread.c, elfread.c (xxx_symfile_new_init, xxx_symfile_init, xxx_symfile_read): Pass pointer to struct objfile rather than pointer to sym_fns. Change references inside each function accordingly. Allocate any symbol file specific info in the per-objfile memory region. * dbxread.c (free_and_init_header_files): Break function into free_header_files(), called from dbx_symfile_finish(), and init_header_files(), called from dbx_new_init(). * dbxread.c (dbx_new_init): Move deallocation things to new dbx_symfile_finish function. * elfread.c (elf_new_init): Call buildsym_new_init(). * objfiles.c (free_objfile): Call the appropriate symfile_finish() routine for the objfile before deallocating other stuff. * sparc-tdep.c (get_longjmp_target): Cast target_read_memory arg. * symfile.h: Move struct sym_fns to before struct objfile def. Add sym_finish function pointer and change prototypes of other function pointers to reflect passing struct objfile pointer rather than struct sym_fns pointer. * symfile.c: Remove now obsolete symtab_fns pointer. * symfile.c (symfile_init): Renamed to find_sym_fns, and now only locates the correct sym_fns struct for the given objfile. * symfile.c (syms_from_objfile, symbol_file_add): Restructured for better support of mapped symbol tables. * symfile.c (symbol_file_command): Remove obsolete code using symfile_fns. * symfile.h: Remove duplicate declarations for symfile_objfile, entry_point, and object_files. * target.c (target_info): Compare symfile_objfile to NULL. * xcoffread.c (aixcoff_new_init): Move deallocation stuff to aixcoff_symfile_finish(). --- gdb/target.c | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) (limited to 'gdb/target.c') diff --git a/gdb/target.c b/gdb/target.c index c78eecb..83fe708 100644 --- a/gdb/target.c +++ b/gdb/target.c @@ -18,10 +18,9 @@ You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ -#include +#include "defs.h" #include #include -#include "defs.h" #include "target.h" #include "gdbcmd.h" #include "symtab.h" @@ -53,9 +52,6 @@ static int nosymbol PARAMS ((char *, CORE_ADDR *)); static void -noprocess PARAMS ((void)); - -static void tcomplain PARAMS ((void)); static int @@ -63,7 +59,6 @@ nomemory PARAMS ((CORE_ADDR, char *, int, int)); static void ignore PARAMS ((void)); - static void target_command PARAMS ((char *, int)); @@ -184,7 +179,7 @@ tcomplain () current_target->to_shortname); } -static void +void noprocess () { error ("You can't do that without a process to debug"); @@ -549,7 +544,7 @@ target_info (args, from_tty) struct target_ops *t; int has_all_mem = 0; - if (symfile_objfile != 0) + if (symfile_objfile != NULL) printf ("Symbols from \"%s\".\n", symfile_objfile->name); #ifdef FILES_INFO_HOOK -- cgit v1.1