使用 C++ 在 Linux 中显示进程

发布于 2024-07-27 19:21:52 字数 62 浏览 1 评论 0原文

我从 C++ 开始,读了一本好书,我想构建一个程序,向用户展示 Linux 正在使用 C++ 执行的所有过程。

I am starting in C++, reading a good book of it and I want to build a program that shows the user all the process that the Linux of he is doing, using C++.

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

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

发布评论

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

评论(1

无风消散 2024-08-03 19:21:52

使用库

http://procps.sourceforge.net/

来读取 proc 条目会很有用。 这就是 top 和其他人如何访问正在运行的进程列表的方式。

另见类似问题:

用于列出正在运行的进程的 Linux API

您还可以链接到 libproc 库而不是从 procps 复制源代码。

Using the library

http://procps.sourceforge.net/

For reading proc entries would be useful. This is how top and others gain access to a list of running process.

Also see a similar question:

Linux API to list running processes

You can also link to the libproc library rather than copying source from procps.

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