diff options
author | johannst <johannst@users.noreply.github.com> | 2022-03-20 21:16:42 +0000 |
---|---|---|
committer | johannst <johannst@users.noreply.github.com> | 2022-03-20 21:16:42 +0000 |
commit | 0cf0869c24bfb00dfd7884f0e40565c2859df3f3 (patch) | |
tree | 51eda79326b399e00b2fe4c56840b8ed26e52f08 /tools/gdb.html | |
parent | bc55732c55a0c854f6e3c3cc40efd603907ecdcb (diff) | |
download | notes-0cf0869c24bfb00dfd7884f0e40565c2859df3f3.tar.gz notes-0cf0869c24bfb00dfd7884f0e40565c2859df3f3.zip |
deploy: 9b3a0b3c1d7afa35c5eb56a69600af841e0b78b5
Diffstat (limited to 'tools/gdb.html')
-rw-r--r-- | tools/gdb.html | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/tools/gdb.html b/tools/gdb.html index ca64e43..c51da87 100644 --- a/tools/gdb.html +++ b/tools/gdb.html @@ -219,6 +219,17 @@ <bp_list>: Space separates list, eg 'command 2 5-8' to run command for breakpoints: 2,5,6,7,8. </code></pre> +<h2><a class="header" href="#watchpoints" id="watchpoints">Watchpoints</a></h2> +<pre><code class="language-markdown"> watch [-location|-l] <expr> [thread <tnum>] + Create a watchpoint for <expr>, will break if <expr> is written to. + Watchpoints respect scope of variables, -l can be used to watch the + memory location instead. + rwatch ... + Sets a read watchpoint, will break if <expr> is read from. + awatch ... + Sets an access watchpoint, will break if <expr> is written to or read + from. +</code></pre> <h2><a class="header" href="#inspection" id="inspection">Inspection</a></h2> <pre><code class="language-markdown"> info functions [<regex>] List functions matching <regex>. List all functions if no <regex> |