处理 Windows CE 上的使用
我需要监视 Windows CE 机器上的句柄使用情况。
本质上,我希望能够随着时间的推移查看句柄使用情况,以判断我的应用程序/服务是否正在泄漏句柄(我相信它们是)。
任何示例代码都会很棒。
I need to monitor handle usage on a Windows CE box.
Essentially I want to be able to see handle usage over time to tell if my applications / services are leaking handles (which I believe they are).
Any example code would be great.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
虽然它并不完全是您想要的,但我可以推荐一个我们正在使用的小工具,称为 CodeSnitch (http ://www.entrek.com/codesnitch.html)。它将检测您的代码并跟踪资源的分配和取消分配,包括句柄。我已经用它来清理我们的几个应用程序并取得了巨大成功。您可以下载 2 周的试用版来试用。
While it is not exactly what you are looking for, I can recommend a little tool that we are using called CodeSnitch (http://www.entrek.com/codesnitch.html). It will instrument your code and keep track allocation and de-allocation of resources, including handles. I have used it to clean up several of our applications with great success. You can download a 2 week trial version to try it out.