|
Pin
|
Public Attributes | ||
| union { | ||
| struct { | ||
| UINT64 sec | ||
| UINT64 nsec | ||
| } wallClock | ||
| struct { | ||
| UINT64 kernelTime | ||
| UINT64 userTime | ||
| } times | ||
| }; | ||
Structure used to return the time from TE_GetTime() The time is returned in seconds and nanoseconds. In Linux for example, we have the time utility. Using "time ls" command we get: real 0m0.002s (corresponds to wallClock) user 0m0.000s (Sum of all threads, corresponds to times.userTime) sys 0m0.000s (Sum of all threads, corresponds to times.kernelTime)