获取Linux当前进程创建时间
如何在 Linux 上使用 c/c++ 获取当前进程创建时间? 当我打开文件 /proc//stat
输出只是一堆数字。我怎么知道其中哪一个是创建时间呢?
How do I get the current process creation time using c/c++ on Linux?
When I'm opening the file /proc//stat
The output is just a bunch of numbers. How do I know which one of them is the creation time?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
联机帮助页列出了
/proc/[ 的值的顺序和含义pid]/stat
。 这个答案更多信息。The manpage lists the order and meaning of the values of
/proc/[pid]/stat
. This answer more information.我建议您查看
man 5 proc
。在我的系统上,第 22 个条目是开始时间。I suggest you look into
man 5 proc
. On my system, the 22nd entry is the start time.