18 lines
253 B
C
18 lines
253 B
C
|
/* bits/rusage.h: The rusage structure. */
|
||
|
|
||
|
#ifndef _BITS_RUSAGE_H
|
||
|
#define _BITS_RUSAGE_H
|
||
|
|
||
|
#include <bits/timespec.h>
|
||
|
|
||
|
struct rusage
|
||
|
{
|
||
|
struct timeval ru_utime;
|
||
|
struct timeval ru_stime;
|
||
|
};
|
||
|
|
||
|
#define RUSAGE_SELF 0
|
||
|
#define RUSAGE_CHILDREN 1
|
||
|
|
||
|
#endif
|