aboutsummaryrefslogtreecommitdiff
path: root/gdb
diff options
context:
space:
mode:
authorRandolph Chung <tausq@debian.org>2004-06-07 02:12:59 +0000
committerRandolph Chung <tausq@debian.org>2004-06-07 02:12:59 +0000
commitd4b6d575691fda534ef98e8eb8f2fe77529f65ed (patch)
tree6a2405f097afe4b8305643e7e2e9f750ddbe22be /gdb
parentd49771efb59f489ecc7ece815583f57ffebbb523 (diff)
downloadfsf-binutils-gdb-d4b6d575691fda534ef98e8eb8f2fe77529f65ed.zip
fsf-binutils-gdb-d4b6d575691fda534ef98e8eb8f2fe77529f65ed.tar.gz
fsf-binutils-gdb-d4b6d575691fda534ef98e8eb8f2fe77529f65ed.tar.bz2
2004-06-06 Randolph Chung <tausq@debian.org>
* gdb.texinfo (push_dummy_call): Update argument list to match the new push_dummy_call method signature. Describe the function argument.
Diffstat (limited to 'gdb')
-rw-r--r--gdb/doc/ChangeLog6
-rw-r--r--gdb/doc/gdbint.texinfo5
2 files changed, 10 insertions, 1 deletions
diff --git a/gdb/doc/ChangeLog b/gdb/doc/ChangeLog
index bdf5e80..22052c2 100644
--- a/gdb/doc/ChangeLog
+++ b/gdb/doc/ChangeLog
@@ -1,3 +1,9 @@
+2004-06-06 Randolph Chung <tausq@debian.org>
+
+ * gdb.texinfo (push_dummy_call): Update argument list to match
+ the new push_dummy_call method signature. Describe the function
+ argument.
+
2004-05-24 Joel Brobecker <brobecker@gnat.com>
* gdb.texinfo (Starting): Document new start command.
diff --git a/gdb/doc/gdbint.texinfo b/gdb/doc/gdbint.texinfo
index 1525dd5..7235f22 100644
--- a/gdb/doc/gdbint.texinfo
+++ b/gdb/doc/gdbint.texinfo
@@ -3635,7 +3635,7 @@ definition is only used in generic code when parsing "$ps".)
If defined, used by @code{frame_pop} to remove a stack frame. This
method has been superseeded by generic code.
-@item push_dummy_call (@var{gdbarch}, @var{func_addr}, @var{regcache}, @var{pc_addr}, @var{nargs}, @var{args}, @var{sp}, @var{struct_return}, @var{struct_addr})
+@item push_dummy_call (@var{gdbarch}, @var{function}, @var{regcache}, @var{pc_addr}, @var{nargs}, @var{args}, @var{sp}, @var{struct_return}, @var{struct_addr})
@findex push_dummy_call
@findex DEPRECATED_PUSH_ARGUMENTS.
@anchor{push_dummy_call} Define this to push the dummy frame's call to
@@ -3643,6 +3643,9 @@ the inferior function onto the stack. In addition to pushing
@var{nargs}, the code should push @var{struct_addr} (when
@var{struct_return}), and the return address (@var{bp_addr}).
+@var{function} is a pointer to a struct value; on architectures that use
+function descriptors, this contains the function descriptor value.
+
Returns the updated top-of-stack pointer.
This method replaces @code{DEPRECATED_PUSH_ARGUMENTS}.