由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Linux版 - time出来的时间怎么对不上?
相关主题
firefox开始崩溃了。。。ati显卡在ubuntu下则么设rendering method
这些系统在terminal里面蹦出来的信息是啥意思?开源虚拟机VirtualBox 3.1.6 发布
limits.conf不workOracle releases VM VirtualBox 3.2.6
Linux里如何查找当前release name? (转载)linux上SSD有多大起色?
VirtualBox 3.0.0 (for Linux) released谁有配置NUMA的经验
vbox装不上了怎么看我的ubuntu是32还是64?
赶紧来看看, 最新linux漏洞why /etc/network/interfaces doesn't show "eth0"
friendly reminder --- Ubuntu 9.10为什么这个32bit系统能够支持13 G 内存?
相关话题的讨论汇总
话题: time话题: user话题: real话题: smp话题: sys
进入Linux版参与讨论
1 (共1页)
M*P
发帖数: 6456
1

$time ./myproject &
结果是
real 40m30.487s
user 31m3.504s
sys 0m28.169s
貌似后两个加起来跟第一个差8m
这是咋回事?
S*A
发帖数: 7142
2
It is normal. Read the manual about what this time means.

【在 M*P 的大作中提到】
: 用
: $time ./myproject &
: 结果是
: real 40m30.487s
: user 31m3.504s
: sys 0m28.169s
: 貌似后两个加起来跟第一个差8m
: 这是咋回事?

M*P
发帖数: 6456
3
没找到

【在 S*A 的大作中提到】
: It is normal. Read the manual about what this time means.
S*A
发帖数: 7142
4
sign. user is just time spend on user mode. sys is time spend on
kernel mode. real is the real clock time.
If your program is waiting for some thing(disk/network), or the
system is running some other task. The the time spend on user
is small than the real time.
real time == user time only happen when kernel pretty much only
schedule one process (taking 100% CPU) at the user space.
SMP is a different story, in SMP case you can see user time > real
time because running on two different processor.

【在 M*P 的大作中提到】
: 没找到
1 (共1页)
进入Linux版参与讨论
相关主题
为什么这个32bit系统能够支持13 G 内存?VirtualBox 3.0.0 (for Linux) released
3Tb硬盘如何分区windows也可以读取vbox装不上了
spin_lock_irqsave vs. disable irq vs. mask irq赶紧来看看, 最新linux漏洞
Qt creator 2.4.1 cannot debug the very simple c++ code “Don’t know how to attach”friendly reminder --- Ubuntu 9.10
firefox开始崩溃了。。。ati显卡在ubuntu下则么设rendering method
这些系统在terminal里面蹦出来的信息是啥意思?开源虚拟机VirtualBox 3.1.6 发布
limits.conf不workOracle releases VM VirtualBox 3.2.6
Linux里如何查找当前release name? (转载)linux上SSD有多大起色?
相关话题的讨论汇总
话题: time话题: user话题: real话题: smp话题: sys