2007-07-06 Jeff Johnston <jjohnstn@redhat.com>

* libc/include/sys/time.h (gettimeofday): Change to proper
        prototype where second parameter is void *.
        * libc/reent/gettimeofdayr.c (_gettimeofday_r): Change prototype
        accordingly.
        * libc/include/reent.h: Fix prototype for _gettimeofday_r.
        * libc/sys/arm/syscalls.c: Fix gettimeofday function signature.
        * libc/sys/rdos/gettod.c: Ditto.
        * libc/sys/sh/syscalls.c: Ditto.
        * libc/time/time.c (time): Change call to _gettimeofday_r
        to pass NULL as 2nd argument.
This commit is contained in:
Jeff Johnston
2007-07-06 16:56:30 +00:00
parent ba9af2d7ec
commit 0be2bc94e7
8 changed files with 24 additions and 11 deletions

View File

@ -22,7 +22,7 @@ int _system _PARAMS ((const char *));
int _rename _PARAMS ((const char *, const char *));
int isatty _PARAMS ((int));
clock_t _times _PARAMS ((struct tms *));
int _gettimeofday _PARAMS ((struct timeval *, struct timezone *));
int _gettimeofday _PARAMS ((struct timeval *, void *));
void _raise _PARAMS ((void));
int _unlink _PARAMS ((const char *));
int _link _PARAMS ((void));
@ -559,9 +559,9 @@ _raise (void)
}
int
_gettimeofday (struct timeval * tp, struct timezone * tzp)
_gettimeofday (struct timeval * tp, void * tzvp)
{
struct timezone *tzp = tzvp;
if (tp)
{
/* Ask the host for the seconds since the Unix epoch. */

View File

@ -8,7 +8,7 @@
struct timeval;
struct timezone;
int gettimeofday(struct timeval *ptimeval, struct timezone *ptimezone)
int gettimeofday(struct timeval *ptimeval, void *ptimezone)
{
errno = ENOSYS;
return -1;

View File

@ -185,7 +185,7 @@ _times (struct tms *tp)
}
int
_gettimeofday (struct timeval *tv, struct timezone *tz)
_gettimeofday (struct timeval *tv, void *tz)
{
tv->tv_usec = 0;
tv->tv_sec = __trap34 (SYS_time);