查看进程的内存使用情况

使用adb shell cat /proc/pid/status或者adb pull /proc/pid/status可以查看一个进程的内存使用情况

查看进程的内存使用情况


VmPeak:Peak virtual memory usage

VmSize:Current virtual memory usage

VmLck:Current physical memory usage of locked path

VmHWM:Peak physical memory usage of locked process

VmRSS:Current physical memory usage of process

VmData:Current physical memory usage of heap

VmStk:Current physical memory usage of stack

VmExe:Current executable physical memory usage

VmLib:Current physical memory usage of share library

VmPTE:Current physical memory usage of page table

VmSwap: Current swap memory usage


你可能感兴趣的:(查看进程的内存使用情况)