diff options
author | Mark Kettenis <kettenis@gnu.org> | 2003-10-18 12:28:05 +0000 |
---|---|---|
committer | Mark Kettenis <kettenis@gnu.org> | 2003-10-18 12:28:05 +0000 |
commit | 0ab4b7528299c82b227f8aceb4b0664b4905fde7 (patch) | |
tree | 11439d488347e2db5971a2066984be76ffa37078 /gdb/doc | |
parent | 3c8d2541fe9c920557b3c7a6e59ae6650ab45f2a (diff) | |
download | gdb-0ab4b7528299c82b227f8aceb4b0664b4905fde7.zip gdb-0ab4b7528299c82b227f8aceb4b0664b4905fde7.tar.gz gdb-0ab4b7528299c82b227f8aceb4b0664b4905fde7.tar.bz2 |
* gdbint.texinfo (Target Architecture Definition): Document
regset_from_core_section.
Diffstat (limited to 'gdb/doc')
-rw-r--r-- | gdb/doc/ChangeLog | 4 | ||||
-rw-r--r-- | gdb/doc/gdbint.texinfo | 6 |
2 files changed, 10 insertions, 0 deletions
diff --git a/gdb/doc/ChangeLog b/gdb/doc/ChangeLog index 150269e..d81239f 100644 --- a/gdb/doc/ChangeLog +++ b/gdb/doc/ChangeLog @@ -1,3 +1,7 @@ +2003-10-18 Mark Kettenis <kettenis@gnu.org> + + * gdbint.texinfo (Target Architecture Definition): Document + regset_from_core_section. 2003-10-16 Kei Sakamot Sakamoto <sakamoto.kei@renesas.com> diff --git a/gdb/doc/gdbint.texinfo b/gdb/doc/gdbint.texinfo index 8fe43a2..e0dcf35 100644 --- a/gdb/doc/gdbint.texinfo +++ b/gdb/doc/gdbint.texinfo @@ -3596,6 +3596,12 @@ Convert the value of register @var{reg} from its virtual form to its raw form. @xref{Target Architecture Definition, , Raw and Virtual Register Representations}. +@item const struct regset *regset_from_core_section (struct gdbarch * @var{gdbarch}, const char * @var{sect_name}, size_t @var{sect_size}) +@findex regset_from_core_section +Return the appropriate register set for a core file section with name +@var{sect_name} and size @var{sect_size}. + + @item RETURN_VALUE_ON_STACK(@var{type}) @findex RETURN_VALUE_ON_STACK @cindex returning structures by value |