How to understand the output of time command?

Unix

Unix Problem Overview


I am trying to figure out the performance of my code, but I do not understand the output of the time command, Can anybody please explain what does time command output means.

The following is what I get:

time ./filereader 

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

What is real, user, sys?

Unix Solutions


Solution 1 - Unix

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.

Solution 2 - Unix

'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.

Solution 3 - Unix

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 .

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionAvinashView Question on Stackoverflow
Solution 1 - UnixNinjaCatView Answer on Stackoverflow
Solution 2 - Unixzebediah49View Answer on Stackoverflow
Solution 3 - UnixJoão PintoView Answer on Stackoverflow