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.
这是我想要实现的目标:
对于我的应用程序中的每个 malloc 调用,我想转储堆栈跟踪(以找出谁在进行 malloc 调用)并且我需要在一段时间内跟踪它。
我知道我们可以在 dbx 中使用 trace 命令,但它只是转储了一个父级别,这对我来说并不是很有用。所以,我想知道我们是否可以where在每个跟踪事件上使用相关的命令。
where
我的应用程序是为 Solaris 构建的,我使用的是 dbx V8.0。