使用 getrusage

发布于 2024-09-15 22:30:05 字数 349 浏览 7 评论 0原文

作为 这个问题的延续,我想知道是否可以获得一些简单的示例代码关于如何利用 getrusage。我想用它来查找进程使用的CPU时间,最好是从PID

我正在使用 Cocoa、Objective_C,当然还有 C。任何帮助都会很棒!

谢谢

As a continuation of this question I'm wondering if I can get some simple sample code as to how to make use of getrusage. I would like to use it to find the time CPU used by a process, ideally from the PID.

I'm working in Cocoa, Objective_C and of course C. Any help would be awesome!

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

暮年 2024-09-22 22:30:05

我对 OS X 不太确定,但就其价值而言,如果这是在 Linux 上,那么从 /proc/ 下的文件读取将是一个相当简单的问题。不过,OS X 似乎没有 procfs (至少不是标准的),所以这个答案将属于“任何帮助”类别。 :)

I'm not so sure about OS X, but for what it's worth, if this were on Linux it would be a fairly simple matter of reading from a file underneath /proc/<pid>. OS X doesn't seem to have procfs (at least, not standard), though, so this answer will fall into the "any help" category. :)

大海や 2024-09-22 22:30:05

因此,我找到了如何使用 此处 和 < a href="https://stackoverflow.com/questions/1469495/unix-programming-struct-timeval-how-to-print-it-c-programming">此处。不幸的是,这只能获取有关当前进程的信息。我需要的是所有正在运行的进程的 CPU 时间以及它们的 PID。

真糟糕:(

So I found out how to implement getrusage using help from here and here. The unfortunate thing is that this manages to get information only about the current process. What I need is CPU time from all the processes running and this from their PID.

Bummer :(

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