如何从进程中分离 PIN 工具
我想知道是否有人有 PIN 工具的经验(来自 http://www.pintool.org/)。 我可以通过调用
./pin -pid MY_PID -t MY_PIN_TOOL.so
But,如何在进程恢复运行时将 pin 工具与进程分离?
I was wondering if anybody has experience with PIN tool (from http://www.pintool.org/).
I can attach the pin tool to an process by its pid by calling
./pin -pid MY_PID -t MY_PIN_TOOL.so
But, how can I detach the pin tool from the process while the process resumes running?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
通过 PIN_Detach 调用时,Pin 可以随时放弃对应用程序的控制。控制权返回到原始未检测的代码,并且应用程序以本机速度运行。此后不再执行任何检测过的代码。
该示例可以在 source/tools/ManualExamples/detach.cpp 中找到。 文章链接
Pin can relinquish control of application any time when invoked via PIN_Detach. Control is returned to the original uninstrumented code and the application runs at native speed. Thereafter no instrumented code is ever executed.
The example can be found in source/tools/ManualExamples/detach.cpp. Link to article