1. NAME

struct_cputime - snaphsot of system and user cputime

2. SYNOPSIS



 
Sélectionnez
struct cputime {
  cputime_t utime;
  cputime_t stime;
};

3. MEMBERS

utime
    time spent in user mode

stime
    time spent in system mode

4. DESCRIPTION

Gathers a generic snapshot of user and system time.

5. COPYRIGHT