What is the lldb equivalent of gdb's rwatch? -
i'm in situation read watchpoints handy. looking @ lldb's help, find watchpoint
command, seems back upwards write watchpoints (which admittedly lot more useful in general, won't in case).
i know gdb has rwatch
command sets read watchpoints. there equivalent lldb?
watch set variable|expression
both take -w
/ --watch
argument specifying either write
(default), read
, or read_write
. e.g.
(lldb) wa s v -w read myvar
gdb lldb watchpoint
No comments:
Post a Comment