diff options
author | Alexandre Oliva <aoliva@redhat.com> | 2001-01-26 02:03:58 +0000 |
---|---|---|
committer | Alexandre Oliva <aoliva@redhat.com> | 2001-01-26 02:03:58 +0000 |
commit | b0913397bae1fb85a5e4568946efae03f918bcaf (patch) | |
tree | 25b003301fb8c4680836f7b22871d4b6f2e6047f | |
parent | 610b895aa1cb734fd656c8fbb22c74eb97075bed (diff) | |
download | newlib-b0913397bae1fb85a5e4568946efae03f918bcaf.zip newlib-b0913397bae1fb85a5e4568946efae03f918bcaf.tar.gz newlib-b0913397bae1fb85a5e4568946efae03f918bcaf.tar.bz2 |
* libc/sys/sh/syscalls.c (_times): New.
-rw-r--r-- | newlib/ChangeLog | 2 | ||||
-rw-r--r-- | newlib/libc/sys/sh/syscalls.c | 8 |
2 files changed, 10 insertions, 0 deletions
diff --git a/newlib/ChangeLog b/newlib/ChangeLog index 27fe6ba..0e05f7e 100644 --- a/newlib/ChangeLog +++ b/newlib/ChangeLog @@ -1,5 +1,7 @@ 2001-01-25 Alexandre Oliva <aoliva@redhat.com> + * libc/sys/sh/syscalls.c (_times): New. + * configure.host (sh*-*-*): Add -DHAVE_GETTIMEOFDAY to newlib_cflags. * libc/sys/sh/syscalls.c (_gettimeofday): New. diff --git a/newlib/libc/sys/sh/syscalls.c b/newlib/libc/sys/sh/syscalls.c index f976114..8380c70 100644 --- a/newlib/libc/sys/sh/syscalls.c +++ b/newlib/libc/sys/sh/syscalls.c @@ -176,6 +176,14 @@ _pipe (int *fd) return __trap34 (SYS_pipe, fd); } +/* This is only provided because _gettimeofday_r and _times_r are + defined in the same module, so we avoid a link error. */ +clock_t +_times (struct tms *tp) +{ + return -1; +} + int _gettimeofday (struct timeval *tv, struct timezone *tz) { |