From 40cfab477e0b52ca3271a8bea6d0b66578c5b521 Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Mon, 12 Aug 1996 19:19:03 +0000 Subject: time: It is not an error if the TOD is not set. --- cpukit/posix/src/time.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'cpukit/posix') diff --git a/cpukit/posix/src/time.c b/cpukit/posix/src/time.c index 40c5332759..cc501f464b 100644 --- a/cpukit/posix/src/time.c +++ b/cpukit/posix/src/time.c @@ -64,8 +64,10 @@ time_t time( { time_t seconds_since_epoch; - if ( !_TOD_Is_set() ) - set_errno_and_return_minus_one( EINVAL ); + /* + * No error is the time of day is not set. For RTEMS the system time + * starts out at the rtems epoch. + */ /* * Internally the RTEMS epoch is 1988. This must be taken into account. -- cgit v1.2.3