interpreting dumpsys cpuinfo

后端 未结 1 1052
情话喂你
情话喂你 2021-01-01 05:11

Im looking for an explanation of result of command \"dumpsys cpuinfo\" in android shell.

:# dumpsys cpuinfo
Load: 17.78 / 16.97 / 16.29
CPU usage from 35983m         


        
相关标签:
1条回答
  • 2021-01-01 05:49

    The information in dumpsys cpuinfo here is just a variation of the unix top command.

    1) The load information is described here:

    http://blog.scoutapp.com/articles/2009/07/31/understanding-load-averages

    2) If you have more than one core (which I expect that you do), it will be more than 100%, so it is an average across all of the CPUs.

    https://superuser.com/questions/575202/understanding-top-command-in-unix

    3) Of the 97% of CPU, the process is spending 78% time in user space, and 19% in Kernel space.

    0 讨论(0)
提交回复
热议问题