aboutsummaryrefslogtreecommitdiff
path: root/gdb/symfile-mem.h
diff options
context:
space:
mode:
authorJim Blandy <jimb@codesourcery.com>2004-05-02 10:14:02 +0000
committerJim Blandy <jimb@codesourcery.com>2004-05-02 10:14:02 +0000
commiteb4556d736ee14965782a320db1496fb070e54c3 (patch)
tree3fcf21764625660cd2d0cc44d1f9a5ab42129959 /gdb/symfile-mem.h
parentad7b9a3686f628880fa3d7aa900f1211ae27e90e (diff)
downloadgdb-eb4556d736ee14965782a320db1496fb070e54c3.zip
gdb-eb4556d736ee14965782a320db1496fb070e54c3.tar.gz
gdb-eb4556d736ee14965782a320db1496fb070e54c3.tar.bz2
Move the symbol-file-from-memory functions into their own file.
* symfile-mem.c, symfile-mem.h: New files. * symfile.c (symbol_file_add_from_bfd): New function. (symbol_file_add): Call symbol_file_add_from_bfd. (symbol_file_add_from_memory, add_symbol_file_from_memory_command): Moved to symfile-mem.c. (_initialize_symfile): Move definition of add-symbol-file-from-memory command to symfile-mem.c. * symfile.h (symbol_file_add_from_bfd): New declaration. * config/i386/linux.mt (TDEPFILES): Add symfile-mem.o. * config/powerpc/linux.mt (TDEPFILES): Same. * Makefile.in (SFILES): Add symfile-mem.c. (symfile_mem_h): New variable. (HFILES_NO_SRCDIR): Add symfile-mem.h. (symfile-mem.o): New rule.
Diffstat (limited to 'gdb/symfile-mem.h')
-rw-r--r--gdb/symfile-mem.h33
1 files changed, 33 insertions, 0 deletions
diff --git a/gdb/symfile-mem.h b/gdb/symfile-mem.h
new file mode 100644
index 0000000..b89d589
--- /dev/null
+++ b/gdb/symfile-mem.h
@@ -0,0 +1,33 @@
+/* Declarations for reading symbol files from memory into GDB.
+
+ Copyright 2004 Free Software Foundation, Inc.
+
+ This file is part of GDB.
+
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 2 of the License, or
+ (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ 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., 59 Temple Place - Suite 330,
+ Boston, MA 02111-1307, USA. */
+
+#if !defined (SYMFILE_MEM_H)
+#define SYMFILE_MEM_H
+
+/* You must #include "bfd.h" and "defs.h" before #including this file. */
+
+/* Forward declarations. */
+struct objfile;
+
+struct objfile *(symbol_file_add_from_memory
+ (bfd *templ, CORE_ADDR addr, int from_tty));
+
+#endif /* SYMFILE_MEM_H */