Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在寻找一种在调用任何函数时打印(存储)名称的方法。
我不想在所有功能中添加痕迹或打印。
我正在寻找一些可以从顶部启用的方法,它会打印/存储/列出调用的函数名称。
我使用的编程语言是 C。
它可能不是标准功能,如果我必须在某处添加黑客以使其工作,我可以。
您可能想查看gcc -pg选项和gprof探查器工具。
gcc
-pg
gprof
http://sourceware.org/binutils/docs/gprof/