This is the mail archive of the libc-alpha@sourceware.org mailing list for the glibc project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: [PATCH 2/4] Consolidate gettimeofday across aarch64/s390/tile


On 04/15/2015 03:21 PM, Adhemerval Zanella wrote:
> diff --git a/sysdeps/unix/sysv/linux/gettimeofday.c b/sysdeps/unix/sysv/linux/gettimeofday.c
> new file mode 100644
> index 0000000..5eaafc0
> --- /dev/null
> +++ b/sysdeps/unix/sysv/linux/gettimeofday.c
> @@ -0,0 +1,35 @@

[...]

> +#include <errno.h>
> +#include <sys/time.h>
> +#if HAVE_GETTIMEOFDAY_VSYSCAL

Name it HAVE_GETTIMEOFDAY_VSYSCALL instead?
                                 ^

> +# include <bits/libc-vdso.h>
> +#endif
> +
> +/* Get the current time of day and timezone information,
> +   putting it into *tv and *tz.  If tz is null, *tz is not filled.
> +   Returns 0 on success, -1 on errors.  */
> +int
> +__gettimeofday (struct timeval *tv, struct timezone *tz)
> +{
> +  return INLINE_VSYSCALL (gettimeofday, 2, tv, tz);
> +}

Rather than adding no-op INLINE_VSYSCALL definitions to all
architectures (patch #1), couldn't the common gettimeofday code be made
to effectively do:

#if HAVE_GETTIMEOFDAY_VSYSCALL
  return INLINE_VSYSCALL (gettimeofday, ...);
#else
  return INLINE_SYSCALL (gettimeofday, ...);
#endif



Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]