diff options
author | Andrew Burgess <aburgess@redhat.com> | 2022-05-10 15:16:46 +0100 |
---|---|---|
committer | Andrew Burgess <aburgess@redhat.com> | 2022-10-10 12:18:00 +0100 |
commit | e4014689b9a1b9aa0dde8f8a358401774566fe8b (patch) | |
tree | 717cc9c12aa819afcadff523c8d0effc7a0b0d82 /gdb/doc | |
parent | 58fd1204aa0f66dd2df30f673c9441e0265b8515 (diff) | |
download | gdb-e4014689b9a1b9aa0dde8f8a358401774566fe8b.zip gdb-e4014689b9a1b9aa0dde8f8a358401774566fe8b.tar.gz gdb-e4014689b9a1b9aa0dde8f8a358401774566fe8b.tar.bz2 |
gdb: add infcall specific debugging
Add two new commands:
set debug infcall on|off
show debug infcall
These enable some new debugging related to when GDB makes inferior
function calls. I've added some basic debugging for what I think are
the major steps in the inferior function call process, but I'm sure we
might want to add more later.
Diffstat (limited to 'gdb/doc')
-rw-r--r-- | gdb/doc/gdb.texinfo | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/gdb/doc/gdb.texinfo b/gdb/doc/gdb.texinfo index 44d87e9..3de511a 100644 --- a/gdb/doc/gdb.texinfo +++ b/gdb/doc/gdb.texinfo @@ -27587,6 +27587,13 @@ for implementing operations such as single-stepping the inferior. @item show debug infrun Displays the current state of @value{GDBN} inferior debugging. +@item set debug infcall +@cindex inferior function call debugging info +Turns on or off display of debugging info related to inferior function +calls made by @value{GDBN}. +@item show debug infcall +Displays the current state of @value{GDBN} inferior function call debugging. + @item set debug jit @cindex just-in-time compilation, debugging messages Turn on or off debugging messages from JIT debug support. |