Define RUSAGE_THREAD and RUSAGE_LWP.

This commit is contained in:
Ulrich Drepper 2008-05-01 05:37:45 +00:00
parent 7272ed4e47
commit b38a90999f
1 changed files with 9 additions and 1 deletions

View File

@ -158,8 +158,16 @@ enum __rusage_who
#define RUSAGE_SELF RUSAGE_SELF
/* All of its terminated child processes. */
RUSAGE_CHILDREN = -1
RUSAGE_CHILDREN = -1,
#define RUSAGE_CHILDREN RUSAGE_CHILDREN
#ifdef __USE_GNU
/* The calling thread. */
RUSAGE_THREAD = 1
# define RUSAGE_THREAD RUSAGE_THREAD
/* Name for the same functionality on Solaris. */
# define RUSAGE_LWP RUSAGE_THREAD
#endif
};
#define __need_timeval