URL
https://opencores.org/ocsvn/or1k/or1k/trunk
Subversion Repositories or1k
[/] [or1k/] [trunk/] [newlib/] [newlib/] [libc/] [include/] [sys/] [resource.h] - Rev 1765
Compare with Previous | Blame | View Log
#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