21 lines
311 B
C
21 lines
311 B
C
/* sys/resource.h: System resource management. */
|
|
|
|
#ifndef _SYS_RESOURCE_H
|
|
#define _SYS_RESOURCE_H
|
|
|
|
#include <bits/rusage.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C"
|
|
{
|
|
#endif
|
|
|
|
/* Get this process or its children's resource usage. */
|
|
int getrusage(int who, struct rusage* ru);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|