summaryrefslogtreecommitdiff
path: root/gdb/exec.h
diff options
context:
space:
mode:
authorPedro Alves <pedro@codesourcery.com>2009-05-22 23:49:13 +0000
committerPedro Alves <pedro@codesourcery.com>2009-05-22 23:49:13 +0000
commit19b4a952dd590a49db11d4b1132835756b2a7ade (patch)
tree0269beee72360ee20a1f409a4eaf7ad12def401d /gdb/exec.h
parent58a75428be8d52a2b0270b8e4951c6047704369c (diff)
downloadgdb-19b4a952dd590a49db11d4b1132835756b2a7ade.tar.gz
* target.h (struct section_table): Rename to ...
(struct target_section): ... this. * exec.c: Adjust all references. * exec.h: Adjust all references. * nto-tdep.c: Adjust all references. * nto-tdep.h: Adjust all references. * ppc-linux-tdep.c: Adjust all references. * rs6000-nat.c: Adjust all references. * s390-tdep.c: Adjust all references. * solib-darwin.c: Adjust all references. * solib-frv.c: Adjust all references. * solib-irix.c: Adjust all references. * solib-null.c: Adjust all references. * solib-osf.c: Adjust all references. * solib-pa64.c: Adjust all references. * solib-som.c: Adjust all references. * solib-sunos.c: Adjust all references. * solib-svr4.c: Adjust all references. * solib-target.c: Adjust all references. * solib.c: Adjust all references. * solist.h: Adjust all references. * symfile.c: Adjust all references. * symfile.h: Adjust all references. * target.c: Adjust all references.
Diffstat (limited to 'gdb/exec.h')
-rw-r--r--gdb/exec.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/gdb/exec.h b/gdb/exec.h
index 0624447e1aa..c33faa7c84a 100644
--- a/gdb/exec.h
+++ b/gdb/exec.h
@@ -22,7 +22,7 @@
#include "target.h"
-struct section_table;
+struct target_section;
struct target_ops;
struct bfd;
@@ -31,8 +31,8 @@ extern struct target_ops exec_ops;
/* Builds a section table, given args BFD, SECTABLE_PTR, SECEND_PTR.
Returns 0 if OK, 1 on error. */
-extern int build_section_table (struct bfd *, struct section_table **,
- struct section_table **);
+extern int build_section_table (struct bfd *, struct target_section **,
+ struct target_section **);
/* Request to transfer up to LEN 8-bit bytes of the target sections
defined by SECTIONS and SECTIONS_END. The OFFSET specifies the
@@ -49,8 +49,8 @@ extern int build_section_table (struct bfd *, struct section_table **,
extern int section_table_xfer_memory_partial (gdb_byte *, const gdb_byte *,
ULONGEST, LONGEST,
- struct section_table *,
- struct section_table *);
+ struct target_section *,
+ struct target_section *);
/* Set the loaded address of a section. */
extern void exec_set_section_address (const char *, int, CORE_ADDR);