summaryrefslogtreecommitdiff
path: root/sys/man/1
diff options
context:
space:
mode:
authoraiju <devnull@localhost>2017-06-12 20:31:04 +0000
committeraiju <devnull@localhost>2017-06-12 20:31:04 +0000
commit89f71fa9ed166c06a23937544b453f65fb224456 (patch)
tree3d5107ead1c85f9c91706f83e62b713f7258d49c /sys/man/1
parentfff474d8639fd387aac437e0a84a06604000c3ba (diff)
acid(1), proc(3): document watchpoints
Diffstat (limited to 'sys/man/1')
-rw-r--r--sys/man/1/acid10
1 files changed, 10 insertions, 0 deletions
diff --git a/sys/man/1/acid b/sys/man/1/acid
index ea58777b9..670e65bcd 100644
--- a/sys/man/1/acid
+++ b/sys/man/1/acid
@@ -252,6 +252,16 @@ Set a breakpoint in the current process at the given address.
.BI bpdel( address )
Delete a breakpoint from the current process.
.TP
+.BI wptab()
+List watchpoints set in the current process.
+.TP
+\fLwpset(\fItype\fL,\fIaddr\fL,\fIlen\fL)
+Set a watchpoint for the \fIlen\fR bytes at the given address.
+\fItype\fR is \fL"r"\fR, \fL"w"\fR or \fL"rw"\fR to trap read accesses, write accesses or both, respectively.
+.TP
+.BI wpdel( address )
+Delete all watchpoints set for the given address.
+.TP
.B cont()
Continue execution of current process and wait for it to stop.
.TP