I want to report the amount of CPU time used per thread in a server process (written in C/C++ on Linux). I can't find the equivalent of GetThreadTimes() on Windows, but that's what I'm looking for.
Can anyone point me in the right direction?
|
|
|||
|
|
|
getrusage(2) with RUSAGE_THREAD. From the man page:
|
||||||||||
|
|
|
The standard interface to per-process kernel statistics is the Here's some sample output for my current shell; you'll need to look at the manpage to decipher it:
|
||
|
|