如何从进程中分离 PIN 工具

发布于 2024-12-10 20:03:57 字数 216 浏览 1 评论 0原文

我想知道是否有人有 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

淡笑忘祈一世凡恋 2024-12-17 20:03:57

通过 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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文