What's the unit of `ru_maxrss` on Linux?

不打扰是莪最后的温柔 提交于 2019-11-30 17:46:55

It's not a standard field for the rusage structure so POSIX doesn't mandate anything about it. But on Linux

ru_maxrss (since Linux 2.6.32)

This is the maximum resident set size used (in kilobytes). For RUSAGE_CHILDREN, this is the resident set size of the largest child, not the maximum resident set size of the process tree.

The man page says:

ru_maxrss (since Linux 2.6.32)

This is the maximum resident set size used (in kilobytes). For RUSAGE_CHILDREN, this is the resident set size of the largest child, not the maximum resident set size of the process tree.

So, it's expressed in kilobytes, just like in BSD.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!