summaryrefslogtreecommitdiff
path: root/newlib/libc/include/sys/resource.h
diff options
context:
space:
mode:
Diffstat (limited to 'newlib/libc/include/sys/resource.h')
-rw-r--r--newlib/libc/include/sys/resource.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/newlib/libc/include/sys/resource.h b/newlib/libc/include/sys/resource.h
new file mode 100644
index 00000000000..eb827552caf
--- /dev/null
+++ b/newlib/libc/include/sys/resource.h
@@ -0,0 +1,15 @@
+#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
+