Re: How to find the CPU usage of a process

From: Ulrich Drepper
Date: Sat Feb 18 2006 - 15:13:02 EST


On 2/18/06, Bernd Eckenfels <be-news06@xxxxxxxxxxxx> wrote:
> But thats only for yourself, right?

In that abbreviated form, yes.

To get an arbitrary process' time use

clockid_t cl;
clock_getcpuclockid(pid, &cl);
struct timespec ts;
clock_gettime(cl, &ts);

This is all documented in POSIX.
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/