views:

26

answers:

3

How to understand the output of time command.

I am trying to figure out the performance of my code.

But I do not understand the output of time command, Can anybody please explain what does time command output means.

following is what I get

time ./filereader

real 0m0.193s user 0m0.012s sys 0m0.056s

What is 'real', 'user','sys'

+3  A: 

From: http://zch051383471952.blogspot.com/2010/01/different-of-real-user-sys-time.html

Real refers to actual elapsed time; User and Sys refer to CPU time used only by the process.

  • Real is wall clock time - time from start to finish of the call. This is all elapsed time including time slices used by other processes and time the process spends blocked (for example if it is waiting for I/O to complete).
  • User is the amount of CPU time spent in user-mode code (outside the kernel) within the process. This is only actual CPU time used in executing the process. Other processes and time the process spends blocked do not count towards this figure.
  • Sys is the amount of CPU time spent in the kernel within the process. This means executing CPU time spent in system calls within the kernel, as opposed to library code, which is still running in user-space. Like 'user', this is only CPU time used by the process.
NinjaCat
A: 

'real' is the amount of clock time it took. If you were to time it with a stopwatch, that's what you'd get.

'user' is the amount of CPU time that the process itself used.

'sys' is the amount of CPU time that the kernel spent on behalf of the process.

zebediah49
A: 

If you are developing with C/C++ you should use gprof to profile your code, check http://www.cs.duke.edu/~ola/courses/programming/gprof.html .

João Pinto