diff options
author | Jeff Johnston <jjohnstn@redhat.com> | 2000-12-04 18:47:07 +0000 |
---|---|---|
committer | Jeff Johnston <jjohnstn@redhat.com> | 2000-12-04 18:47:07 +0000 |
commit | 6ba54a154439e9b430c8077c7cbd335e15ab4c49 (patch) | |
tree | b1245f01273edce84b9b3dac9dd6125aa59ced0d | |
parent | 8677b81966edaa9316e021cbfde950af95701f9c (diff) | |
download | cygnal-6ba54a154439e9b430c8077c7cbd335e15ab4c49.tar.gz cygnal-6ba54a154439e9b430c8077c7cbd335e15ab4c49.tar.bz2 cygnal-6ba54a154439e9b430c8077c7cbd335e15ab4c49.zip |
2000-12-04 Joel Sherrill <joel@OARcorp.com>
* libc/include/sys/times.h: Add reference to POSIX standard.
-rw-r--r-- | newlib/ChangeLog | 4 | ||||
-rw-r--r-- | newlib/libc/include/sys/times.h | 1 |
2 files changed, 5 insertions, 0 deletions
diff --git a/newlib/ChangeLog b/newlib/ChangeLog index f5ffe446a..eaa9a748b 100644 --- a/newlib/ChangeLog +++ b/newlib/ChangeLog @@ -1,5 +1,9 @@ 2000-12-04 Joel Sherrill <joel@OARcorp.com> + * libc/include/sys/times.h: Add reference to POSIX standard. + +2000-12-04 Joel Sherrill <joel@OARcorp.com> + * libc/include/sys/time.h: Added BSD timer manipulation macros used by RTEMS code. diff --git a/newlib/libc/include/sys/times.h b/newlib/libc/include/sys/times.h index c973ae1b0..9375cb19d 100644 --- a/newlib/libc/include/sys/times.h +++ b/newlib/libc/include/sys/times.h @@ -12,6 +12,7 @@ typedef _CLOCK_T_ clock_t; #define __clock_t_defined #endif +/* Get Process Times, P1003.1b-1993, p. 92 */ struct tms { clock_t tms_utime; /* user time */ clock_t tms_stime; /* system time */ |