mirror of
https://github.com/rtlduino/RTL8710AF_GCC.git
synced 2024-11-23 01:34:15 +00:00
923914edae
motify arm-none-eabi-gcc
15 lines
307 B
C
15 lines
307 B
C
#ifndef _SYS_RESOURCE_H_
|
|
#define _SYS_RESOURCE_H_
|
|
|
|
#include <sys/time.h>
|
|
|
|
#define RUSAGE_SELF 0 /* calling process */
|
|
#define RUSAGE_CHILDREN -1 /* terminated child processes */
|
|
|
|
struct rusage {
|
|
struct timeval ru_utime; /* user time used */
|
|
struct timeval ru_stime; /* system time used */
|
|
};
|
|
|
|
#endif
|
|
|