您的位置:首页 > 移动开发 > Android开发

Android中查看进程的内存使用情况

2015-06-26 07:08 846 查看
使用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
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: