From 610b895aa1cb734fd656c8fbb22c74eb97075bed Mon Sep 17 00:00:00 2001 From: Alexandre Oliva Date: Thu, 25 Jan 2001 21:40:28 +0000 Subject: [PATCH] * configure.host (sh*-*-*): Add -DHAVE_GETTIMEOFDAY to newlib_cflags. * libc/sys/sh/syscalls.c (_gettimeofday): New. --- newlib/ChangeLog | 5 +++++ newlib/configure.host | 1 + newlib/libc/sys/sh/syscalls.c | 9 +++++++++ 3 files changed, 15 insertions(+) diff --git a/newlib/ChangeLog b/newlib/ChangeLog index 22dddf315..27fe6ba96 100644 --- a/newlib/ChangeLog +++ b/newlib/ChangeLog @@ -1,3 +1,8 @@ +2001-01-25 Alexandre Oliva + + * configure.host (sh*-*-*): Add -DHAVE_GETTIMEOFDAY to newlib_cflags. + * libc/sys/sh/syscalls.c (_gettimeofday): New. + 2001-01-23 Jeff Johnston * libc/include/math.h (signgam): Regress previous fix as diff --git a/newlib/configure.host b/newlib/configure.host index aba941e82..1df620199 100644 --- a/newlib/configure.host +++ b/newlib/configure.host @@ -429,6 +429,7 @@ case "${host}" in syscall_dir=syscalls ;; sh*-*-*) + newlib_cflags="${newlib_cflags} -DHAVE_GETTIMEOFDAY" syscall_dir=syscalls ;; sparc-sun-sunos*) diff --git a/newlib/libc/sys/sh/syscalls.c b/newlib/libc/sys/sh/syscalls.c index 3626c0a44..f9761145f 100644 --- a/newlib/libc/sys/sh/syscalls.c +++ b/newlib/libc/sys/sh/syscalls.c @@ -1,6 +1,7 @@ #include <_ansi.h> #include #include +#include #include "sys/syscall.h" int errno; @@ -174,3 +175,11 @@ _pipe (int *fd) { return __trap34 (SYS_pipe, fd); } + +int +_gettimeofday (struct timeval *tv, struct timezone *tz) +{ + tv->tv_usec = 0; + tv->tv_sec = __trap34 (SYS_time); + return 0; +} -- 2.43.5