gdb:仅当调用函数不等于某个值时才有条件地中断函数

前端之家收集整理的这篇文章主要介绍了gdb:仅当调用函数不等于某个值时才有条件地中断函数前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
在我的项目中,我有my_malloc(),它将调用malloc().

我喜欢在gdb中设置条件断点,这样gdb就会分成“gdb>”仅当malloc()的调用函数不等于my_mallc()时.

可能吗?

目标是识别所有直接调用malloc()的代码,而不是通过my_malloc().

@R_502_323@

I like to set up the conditional breakpoint in gdb such that gdb will break into “gdb>” only when the caller function of malloc() is not equal to my_mallc().

换句话说,当my_malloc未调用malloc时,您希望在malloc上中断.

一种方法是设置三个断点:一个在malloc上,一个在my_malloc上,一个在my_malloc上.然后(假设断点分别为1,2和3).

(gdb) commands 2
silent                # don't announce hitting breakpoint #2
disable 1             # don't stop when malloc is called within my_malloc
continue              # continue execution when BP#2 is hit
end

(gdb) commands 3
silent
enable 1              # re-enable malloc breakpoint
continue
end

此技术仅适用于单线程应用程序.

原文链接:https://www.f2er.com/c/119103.html

猜你在找的C&C++相关文章