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++ 中捕获函数调用。就像一个进程可能正在调用 setLocale 一样。我想知道是否有人打电话给它?
从你的陈述中我可以理解。使用任何调试器都相当容易。在函数的第一行gdb添加 a运行代码。breakpoint当此断点命中时,请参阅backtrace以了解如何调用此函数。
gdb
breakpoint
backtrace