Solaris 10 x86 C++ 上的 GetThreadTimes
我想要一个类似于 VC++ GetThreadTimes()
函数的类似函数在 Solaris 上工作。我需要一个监视工具来监视线程并监视另一个线程的执行时间。有没有直接的方法来做到这一点?
我发现 getrusage() 只能执行此操作以获得调用线程的 times() 值。但我想做的是从另一个线程监视线程时间。我的最后一招是修改 CreateThread() 的实现,将 sig 处理程序硬连接到要执行的线程。并使用ighandler为我抓取数据。但我还不知道这是否有效。
I want a similar function similar to the VC++ GetThreadTimes()
function to work on Solaris. I need a monitoring tool to monitor thread and monitor execution time from another thread. Is there a direct way of doing this?
I have found that getrusage()
can do this only to get the value of times()
for the calling thread. But I what I want to do is monitor the thread times from another thread. My last resort is to modify the implementation of CreateThread()
to hardwire a sig handler to the thread to be executed. And use the sighandler to grab the data for me. But I have no idea yet if this will work.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 Solaris 上,您可以通过映射 /proc/PID/lwp/LWPID/lwpstatus 来完成此操作
简单示例:
这是当前进程的第一个线程,但是只要您有足够的访问权限并且它们存在,就可以使用 PID 和 LWPID 的任何值。
这在我的 Solaris 测试机(SunOS wiked 5.10 Generic_142900-13 sun4v sparc SUNW,T5140)上运行正常。
我确实尝试在这个示例中使用 mmap,但从调用中返回“操作不适用”,因此放弃并使用 read 代替。
On Solaris you can do this by mmaping /proc/PID/lwp/LWPID/lwpstatus
Simple example:
Here this is the first thread of the current process, but any values of PID and LWPID can be used provided you have sufficient access and they exist.
This ran ok on my Solaris test machine (SunOS wiked 5.10 Generic_142900-13 sun4v sparc SUNW,T5140).
I did try to use mmap for this example, but got "operation not applicable" returned from the call so gave up and used read instead.