lldb 中断触发,可以设置地址内的值等于多少才引发中断么

lldb 中断触发,可以设置地址内的值等于多少才引发中断么。例如我想某一个地址内的数值变成0xff的时候引发中断?
利用breakpoint command add 1,之后不知道使用什么语句,网上很多例子都是在xcode当中条件为某个变量是多少的时候引发条件中断。

watchpoint modify -c ‘*(类型 *)0x00000000 == 0xff’

大概的看官网 : <下图为官网的截图>
LLDB官网

详细介绍看lldb : <下图为 lldb 调试器中截图>

你说的这种情况我知道。我的意思是具体的某一个地址内的值,等于多少,或者大于多少,引发中断。

我使用watchpoint modify -c '*(int *)0x000000016fbe7278 == 0xe0’,但是,每次变量被访问都引发中断,没达到想要的结果,

watchpoint set expression -size 8 -w write – 0x000000016fbe7278
watchpoint modify -c ‘*(int *) 0x000000016fbe7278 == 0xe0’
1.先设置 硬件写断点.
2.增加条件!
yangyss的截图都这么清晰明了,等同喂饭了
https://lldb.llvm.org/cpp_reference/CommandObjectWatchpoint_8cpp_source.html

谢谢。之前理解不够深。没弄懂