2005-04-27 08:01:41 +00:00
|
|
|
/* clock_gettime -- Get current time from a POSIX clockid_t. Linux version.
|
2019-01-01 00:11:28 +00:00
|
|
|
Copyright (C) 2003-2019 Free Software Foundation, Inc.
|
2003-03-03 04:57:09 +00:00
|
|
|
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
|
2012-02-09 23:18:22 +00:00
|
|
|
License along with the GNU C Library; if not, see
|
|
|
|
<http://www.gnu.org/licenses/>. */
|
2003-03-03 04:57:09 +00:00
|
|
|
|
|
|
|
#include <sysdep.h>
|
2005-04-27 08:01:41 +00:00
|
|
|
#include <errno.h>
|
2005-05-09 19:23:39 +00:00
|
|
|
#include <time.h>
|
2005-04-27 08:01:41 +00:00
|
|
|
#include "kernel-posix-cpu-timers.h"
|
2003-03-03 04:57:09 +00:00
|
|
|
|
Consolidate vDSO macros and usage
This patch consolidate the Linux vDSO define and usage across all ports
that uses it. The common vDSO definitions and calling through
{INLINE/INTERNAL}_VSYSCALL macros are moved to a common header
sysdep-vdso.h and vDSO name declaration and prototype is defined
using a common macro.
Also PTR_{MANGLE,DEMANGLE} is added to ports that does not use them
for vDSO calls (aarch64, powerpc, s390, and tile) and thus it will
reflect in code changes. For ports that already implement pointer
mangling/demangling in vDSO system (i386, x32, x86_64) this patch
is mainly a code refactor.
Checked on x32, x86_64, x32, ppc64le, and aarch64.
2015-04-17 13:58:31 +00:00
|
|
|
#ifdef HAVE_CLOCK_GETTIME_VSYSCALL
|
|
|
|
# define HAVE_VSYSCALL
|
2011-09-07 01:34:11 +00:00
|
|
|
#endif
|
Consolidate vDSO macros and usage
This patch consolidate the Linux vDSO define and usage across all ports
that uses it. The common vDSO definitions and calling through
{INLINE/INTERNAL}_VSYSCALL macros are moved to a common header
sysdep-vdso.h and vDSO name declaration and prototype is defined
using a common macro.
Also PTR_{MANGLE,DEMANGLE} is added to ports that does not use them
for vDSO calls (aarch64, powerpc, s390, and tile) and thus it will
reflect in code changes. For ports that already implement pointer
mangling/demangling in vDSO system (i386, x32, x86_64) this patch
is mainly a code refactor.
Checked on x32, x86_64, x32, ppc64le, and aarch64.
2015-04-17 13:58:31 +00:00
|
|
|
#include <sysdep-vdso.h>
|
2005-04-27 08:01:41 +00:00
|
|
|
|
Finish move of clock_* functions to libc. [BZ #24959]
In glibc 2.17, the functions clock_getcpuclockid, clock_getres,
clock_gettime, clock_nanosleep, and clock_settime were moved from
librt.so to libc.so, leaving compatibility stubs behind. Now that the
dynamic linker no longer insists on finding versioned symbols in the
same library that originally defined them, we do not need the stubs
anymore, and this means we don't need GLIBC_PRIVATE __-prefix aliases
for most of the functions anymore either. (clock_gettime still needs
one.) For ports added before 2.17, libc.so needs to provide two
symbol versions for each, the default at GLIBC_2.17 plus a compat
version matching what librt had.
While I'm at it, move the clock_*.c files and their tests from rt/ to
time/.
2019-09-04 06:18:57 +00:00
|
|
|
#include <shlib-compat.h>
|
|
|
|
|
2019-02-01 12:19:42 +00:00
|
|
|
/* Get current value of CLOCK and store it in TP. */
|
|
|
|
int
|
|
|
|
__clock_gettime (clockid_t clock_id, struct timespec *tp)
|
|
|
|
{
|
|
|
|
return INLINE_VSYSCALL (clock_gettime, 2, clock_id, tp);
|
|
|
|
}
|
|
|
|
libc_hidden_def (__clock_gettime)
|
Finish move of clock_* functions to libc. [BZ #24959]
In glibc 2.17, the functions clock_getcpuclockid, clock_getres,
clock_gettime, clock_nanosleep, and clock_settime were moved from
librt.so to libc.so, leaving compatibility stubs behind. Now that the
dynamic linker no longer insists on finding versioned symbols in the
same library that originally defined them, we do not need the stubs
anymore, and this means we don't need GLIBC_PRIVATE __-prefix aliases
for most of the functions anymore either. (clock_gettime still needs
one.) For ports added before 2.17, libc.so needs to provide two
symbol versions for each, the default at GLIBC_2.17 plus a compat
version matching what librt had.
While I'm at it, move the clock_*.c files and their tests from rt/ to
time/.
2019-09-04 06:18:57 +00:00
|
|
|
|
|
|
|
versioned_symbol (libc, __clock_gettime, clock_gettime, GLIBC_2_17);
|
|
|
|
/* clock_gettime moved to libc in version 2.17;
|
|
|
|
old binaries may expect the symbol version it had in librt. */
|
|
|
|
#if SHLIB_COMPAT (libc, GLIBC_2_2, GLIBC_2_17)
|
|
|
|
strong_alias (__clock_gettime, __clock_gettime_2);
|
|
|
|
compat_symbol (libc, __clock_gettime_2, clock_gettime, GLIBC_2_2);
|
|
|
|
#endif
|