使用 C++ 在 Linux 中显示进程
我从 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用库
http://procps.sourceforge.net/
来读取 proc 条目会很有用。 这就是
top
和其他人如何访问正在运行的进程列表的方式。另见类似问题:
您还可以链接到 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:
You can also link to the libproc library rather than copying source from procps.