diff options
author | Carlos Eduardo Seo <cseo@linux.vnet.ibm.com> | 2008-05-24 16:32:01 +0000 |
---|---|---|
committer | Carlos Eduardo Seo <cseo@linux.vnet.ibm.com> | 2008-05-24 16:32:01 +0000 |
commit | 17ea7499a94cca815ea904ccfdb2743d208a6688 (patch) | |
tree | a7124b178d90dfeb2bf6b85b58c8fe95222f93c7 /gdb/regset.h | |
parent | bb864ac122ca01559e202562d69b7619027e8e2c (diff) | |
download | fsf-binutils-gdb-17ea7499a94cca815ea904ccfdb2743d208a6688.zip fsf-binutils-gdb-17ea7499a94cca815ea904ccfdb2743d208a6688.tar.gz fsf-binutils-gdb-17ea7499a94cca815ea904ccfdb2743d208a6688.tar.bz2 |
* gdbarch.sh: Added new gdbarch struct
core_regset_sections.
* gdbarch.c: Refreshed.
* gdbarch.h: Refreshed.
* regset.h (core_regset_section): Declared.
* linux-nat.c (linux_nat_do_thread_registers): Added
support for the new gdbarch struct core_regset_sections.
* utils.c (host_address_to_string): New function.
* defs.h (host_address_to_string): New prototype.
* i386-linux-tdep.c (i386_regset_rections): New register
sections list for i386.
(i386_linux_init_abi): Initialized new gdbarch struct
core_regset_sections.
* Makefile.in: Updated to reflect dependency changes.
* ppc-linux-tdep.c (ppc_regset_sections): Register
sections list for ppc.
(ppc_linux_init_abi): Initialized new gdbarch struct
core_regset_sections
Diffstat (limited to 'gdb/regset.h')
-rw-r--r-- | gdb/regset.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/gdb/regset.h b/gdb/regset.h index 2d11b85..0f894b2 100644 --- a/gdb/regset.h +++ b/gdb/regset.h @@ -23,6 +23,13 @@ struct gdbarch; struct regcache; +/* Data structure for the supported register notes in a core file. */ +struct core_regset_section +{ + const char *sect_name; + int size; +}; + /* Data structure describing a register set. */ typedef void (supply_regset_ftype) (const struct regset *, struct regcache *, |