关于unix环境的进程时间

Unix环境的进程时间有三个度量值:

    1.Wall Clock time : 把进程的执行当作一个黑盒,人类所感知的起止时间的差。

    2.User CPU time :   执行用户态指令所花的CPU时间。

    3.System CPU time : 内核代表进程执行时所花的CPU时间。

2和3合并起来称为 CPU time.

shell中可以用time测量一下执行进程所花的时间:

引用

$ time -p curl facebook.com > /dev/null  #故意访问一个访问不到的网站

得到:

real 63.15   #即Wall Clock Time, 进程一共执行了63秒

user 0.00

sys 0.01     #user cpu time 和sys cpu time都很短,说明大部分时间花在I/O等待上

Leave a Comment

Your email address will not be published.

This site uses Akismet to reduce spam. Learn how your comment data is processed.