我想使用/proc/pid/
伪文件系统获取单个进程使用的内存百分比。
使用/proc/pid/status | grep Vm
我可以获得一些有用的信息:
VmPeak: Peak virtual memory size.
VmSize: Virtual memory size.
VmLck: Locked memory size.
VmHWM: Peak resident set size.
VmRSS: Resident set size.
VmData: Size of date.
VmStk: stack.
VmExe: text segments.
根据这些信息,我如何获得单个进程使用的内存百分比?