From 2e2cf92151ccd16ca915e3dbcf043180d4870fb4 Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Mon, 1 Jul 2002 22:35:07 +0000 Subject: 2002-07-01 Joel Sherrill * src/__times.c: Corrected from previous attempt to cleanup. --- c/src/exec/libcsupport/ChangeLog | 4 ++++ c/src/exec/libcsupport/src/__times.c | 9 +++++++-- 2 files changed, 11 insertions(+), 2 deletions(-) (limited to 'c/src/exec/libcsupport') diff --git a/c/src/exec/libcsupport/ChangeLog b/c/src/exec/libcsupport/ChangeLog index 6f89046aa5..56a6459357 100755 --- a/c/src/exec/libcsupport/ChangeLog +++ b/c/src/exec/libcsupport/ChangeLog @@ -1,3 +1,7 @@ +2002-07-01 Joel Sherrill + + * src/__times.c: Corrected from previous attempt to cleanup. + 2002-07-01 Ralf Corsepius * configure.ac: Remove RTEMS_PROJECT_ROOT. diff --git a/c/src/exec/libcsupport/src/__times.c b/c/src/exec/libcsupport/src/__times.c index 3b23f3764a..7c06a879f1 100644 --- a/c/src/exec/libcsupport/src/__times.c +++ b/c/src/exec/libcsupport/src/__times.c @@ -27,14 +27,19 @@ clock_t _times( struct tms *ptms ) { - rtems_status_code status; - rtems_interval ticks; + rtems_interval ticks; if ( !ptms ) { errno = EFAULT; return -1; } + /* + * This call does not depend on TOD being initialized and can't fail. + */ + + (void) rtems_clock_get( RTEMS_CLOCK_GET_TICKS_SINCE_BOOT, &ticks ); + /* * RTEMS technically has no notion of system versus user time * since there is no separation of OS from application tasks. -- cgit v1.2.3