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] | |
Hi Andreas,
> On Dez 11 2019, Lukasz Majewski wrote:
>
> > diff --git a/sysdeps/unix/sysv/linux/timerfd_gettime.c
> > b/sysdeps/unix/sysv/linux/timerfd_gettime.c new file mode 100644
> > index 0000000000..18e1fd2991
> > --- /dev/null
> > +++ b/sysdeps/unix/sysv/linux/timerfd_gettime.c
> > @@ -0,0 +1,66 @@
> > +/* timerfd_gettime -- get the timer setting referred to by file
> > descriptor.
> > + Copyright (C) 2019 Free Software Foundation, Inc.
> > + This file is part of the GNU C Library.
> > +
> > + The GNU C Library is free software; you can redistribute it
> > and/or
> > + modify it under the terms of the GNU Lesser General Public
> > License as
> > + published by the Free Software Foundation; either version 2.1
> > of the
> > + License, or (at your option) any later version.
> > +
> > + The GNU C Library is distributed in the hope that it will be
> > useful,
> > + but WITHOUT ANY WARRANTY; without even the implied warranty of
> > + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
> > GNU
> > + Lesser General Public License for more details.
> > +
> > + You should have received a copy of the GNU Lesser General Public
> > + License along with the GNU C Library; see the file COPYING.LIB.
> > If
> > + not, see <https://www.gnu.org/licenses/>. */
> > +
> > +#include <errno.h>
> > +#include <stdlib.h>
> > +#include <time.h>
> > +#include <sysdep.h>
> > +#include <kernel-features.h>
> > +
> > +int
> > +__timerfd_gettime64 (int fd, struct __itimerspec64 *value)
> > +{
> > +#ifdef __ASSUME_TIME64_SYSCALLS
> > +# ifndef __NR_timerfd_gettime64
> > +# define __NR_timerfd_gettime64 __NR_timerfd_gettime
> > +# endif
> > + return INLINE_SYSCALL_CALL (timerfd_gettime64, fd, value);
> > +#else
> > +# ifdef __NR_timerfd_gettime64
> > + int ret = INLINE_SYSCALL_CALL (timerfd_gettime64, fd, value);
> > + if (ret == 0 || errno != ENOSYS)
> > + return ret;
> > +# endif
> > + struct itimerspec its32;
> > + int retval = INLINE_SYSCALL_CALL (timerfd_gettime, fd, &its32);
> > + if (retval == 0)
> > + {
> > + value->it_interval = valid_timespec_to_timespec64
> > (its32.it_interval);
> > + value->it_value = valid_timespec_to_timespec64
> > (its32.it_value);
> > + }
> > +
> > + return retval;
> > +#endif
> > +}
Thank you for your comment.
>
> You need a libc_hidden_def matching the libc_hidden_proto in
> include/time.h.
I'm a bit confused with this function. Before this patch, it was auto
generated from sysdeps/unix/sysv/linux/syscalls.list description.
From what I've dug (by examining the sysdeps/unix/make-syscalls.sh) it
was a "strong" symbol without the hidden definition.
Considering the above - there shall NOT be
+libc_hidden_proto (__timerfd_gettime64); in the first place.
Or do I miss something?
>
> Andreas.
>
Best regards,
Lukasz Majewski
--
DENX Software Engineering GmbH, Managing Director: Wolfgang Denk
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: (+49)-8142-66989-59 Fax: (+49)-8142-66989-80 Email: lukma@denx.de
Attachment:
pgplJ6rbnSeCS.pgp
Description: OpenPGP digital signature
| Index Nav: | [Date Index] [Subject Index] [Author Index] [Thread Index] | |
|---|---|---|
| Message Nav: | [Date Prev] [Date Next] | [Thread Prev] [Thread Next] |