Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
当我在 linux 下测试一个 perl 脚本并使用它time sh -c来测量花费的时间时,我得到了一个奇怪的结果:
time sh -c
real 14m11.903s user 34m39.319s sys 16m54.074s
这意味着实际花费的时间甚至少于用户时间。并且自己目测时间,剧本没花34分钟,实时更接近我看到的。有没有人对此有任何线索?谢谢。
该脚本可能使用了超过 1 个核心。
用户行显示进程直接使用的总 CPU 时间。如果您的进程有多个线程并且您的 cpu 有多个核心,那么您可能会使用比挂钟时间更多的 CPU 时间。