mirror of
https://github.com/Hizenberg469/GDB-tutorial.git
synced 2026-04-20 06:12:23 +03:00
new lesson started
This commit is contained in:
18
GDB-Commands-Scripts-Workflow
Normal file
18
GDB-Commands-Scripts-Workflow
Normal file
@@ -0,0 +1,18 @@
|
||||
= *GDB Commands, Scripts and Workflow*
|
||||
|
||||
=== Breakpoints and Commands -- save time![quote,Rūmī]++++.Title
|
||||
|
||||
In order to display some specific information when we reach a breakpoint,
|
||||
we can achieve this by `(gdb)command` command in gdb.
|
||||
[source,]
|
||||
----
|
||||
(gdb) command 1
|
||||
Type commands for breakpoint(s) 1, one per line.
|
||||
End with a line saying just "end".
|
||||
>print arr
|
||||
>print size
|
||||
>end
|
||||
----
|
||||
|
||||
Here, the argument to "command" is the index of the breakpoint to which
|
||||
these print commands will be associated to.
|
||||
Reference in New Issue
Block a user