Changeset 40cfab47 in rtems
- Timestamp:
- 08/12/96 19:19:03 (27 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- d60d9505
- Parents:
- 9b77fee
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
c/src/exec/posix/src/time.c
r9b77fee r40cfab47 65 65 time_t seconds_since_epoch; 66 66 67 if ( !_TOD_Is_set() ) 68 set_errno_and_return_minus_one( EINVAL ); 67 /* 68 * No error is the time of day is not set. For RTEMS the system time 69 * starts out at the rtems epoch. 70 */ 69 71 70 72 /* -
cpukit/posix/src/time.c
r9b77fee r40cfab47 65 65 time_t seconds_since_epoch; 66 66 67 if ( !_TOD_Is_set() ) 68 set_errno_and_return_minus_one( EINVAL ); 67 /* 68 * No error is the time of day is not set. For RTEMS the system time 69 * starts out at the rtems epoch. 70 */ 69 71 70 72 /*
Note: See TracChangeset
for help on using the changeset viewer.