快速业务通道

Linux Shell中PS命令中的%CPU的含义介绍

作者 佚名技术 来源 Linux系统 浏览 发布时间 2012-05-05

  PS命令中的%CPU是指一个进程占用CPU的时间百分比,那么具体的含义是什么呢?

  PS的man手册的解释是这样的:

  

cpu utilization of the process in "##.#" format.

Currently, it is the CPU time used divided by the time the

process has been running (cputime/realtime ratio),

expressed as a percentage. It will not add up to 100%

unless you are lucky. (alias pcpu).

  ps的代码中是这样处理的

  

static int pr_pcpu(char *restrict const outbuf, const proc_t *restrict const pp){

unsigned long long total_time; /* jiffies used by this process */

unsigned pcpu = 0; /* scaled %cpu, 999 means 99.9% */

unsigned long long seconds; /* seconds of process life */

total_time = pp->utime   pp->stime;

if(include_dead_children) total_time  = (pp->cutime   pp->cstime);

seconds = seconds_since_boot - pp->start_time / Hertz;

if(seconds) pcpu = (total_time * 1000ULL / Hertz) / seconds;

if (pcpu > 999U)

return snprintf(outbuf, COLWID, "%u", pcpu/10U);

return snprintf(outbuf, COLWID, "%u.%u", pcpu/10U, pcpuU);

}

  其中seconds_since_boot是用当前时间减去系统启动时的时间得到的,启动的时间通过读/proc/stat中的btime获得.而start_time是进程被fork时设置的.另外进程的时间包括在用户态运行的时间和内核态运行的时间.这样,这个百分比的含义就是从进程被创建到执行ps操作这段时间T内,这个进程运行的时间和T的比值.

  如果在ps中指定了include_dead_children选项,那么这个进程的时间还包括它的它创建的但已经死去的进程的运行时间,cutime和cstime会在父进程为子进程收尸的时候调用wait_task_zombie来累加.比如在bash中执行updatedb,在执行完成后,运行

  ps -eo pcpu,comm,stat,pid|grep bash

Empire CMS,phome.net

  和

  ps S -eo pcpu,comm,stat,pid|grep bash

  后者的百分比更在.

Empire CMS,phome.net

凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢!

分享到: 更多

Copyright ©1999-2011 厦门凌众科技有限公司 厦门优通互联科技开发有限公司 All rights reserved

地址(ADD):厦门软件园二期望海路63号701E(东南融通旁) 邮编(ZIP):361008

电话:0592-5908028 传真:0592-5908039 咨询信箱:web@lingzhong.cn 咨询OICQ:173723134

《中华人民共和国增值电信业务经营许可证》闽B2-20100024  ICP备案:闽ICP备05037997号