GDB 在函数偏移量中设置断点
GDB set breakpoint in function offset
我可以像这样设置断点
b some_function
但是我可以在这个函数的偏移量 0x10 中放置一个断点吗
b some_function +0x10
或者
b (some_function +0x10)
不起作用
(gdb) p &foo
= (<text variable, no debug info> *) 0x555555555129 <foo>
(gdb) b *foo+0x10
Breakpoint 2 at 0x555555555139
它是。
我可以像这样设置断点
b some_function
但是我可以在这个函数的偏移量 0x10 中放置一个断点吗
b some_function +0x10
或者 b (some_function +0x10)
不起作用
(gdb) p &foo
= (<text variable, no debug info> *) 0x555555555129 <foo>
(gdb) b *foo+0x10
Breakpoint 2 at 0x555555555139
它是。