Watchpoint a fixed address

前端 未结 1 1865
清歌不尽
清歌不尽 2021-01-31 01:31

For my current embedded application I am trying to put GDB watch point at a fixed memory address.

As an example, my application updates the following address: 0x10793ad0

相关标签:
1条回答
  • 2021-01-31 01:56

    The right way to set watchpoint on address is watch *0x10793ad0. See gdb doc

    0 讨论(0)
提交回复
热议问题