Blame time/clock_gettime.c

Packit 1d0f99
/* Get the current value of a clock.  Stub version.
Packit 1d0f99
   Copyright (C) 1999-2018 Free Software Foundation, Inc.
Packit 1d0f99
   This file is part of the GNU C Library.
Packit 1d0f99
Packit 1d0f99
   The GNU C Library is free software; you can redistribute it and/or
Packit 1d0f99
   modify it under the terms of the GNU Lesser General Public
Packit 1d0f99
   License as published by the Free Software Foundation; either
Packit 1d0f99
   version 2.1 of the License, or (at your option) any later version.
Packit 1d0f99
Packit 1d0f99
   The GNU C Library is distributed in the hope that it will be useful,
Packit 1d0f99
   but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit 1d0f99
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
Packit 1d0f99
   Lesser General Public License for more details.
Packit 1d0f99
Packit 1d0f99
   You should have received a copy of the GNU Lesser General Public
Packit 1d0f99
   License along with the GNU C Library; if not, see
Packit 1d0f99
   <http://www.gnu.org/licenses/>.  */
Packit 1d0f99
Packit 1d0f99
#include <errno.h>
Packit 1d0f99
#include <time.h>
Packit Service 4e3b02
#include <shlib-compat.h>
Packit 1d0f99
Packit 1d0f99
/* Get current value of CLOCK and store it in TP.  */
Packit 1d0f99
int
Packit 1d0f99
__clock_gettime (clockid_t clock_id, struct timespec *tp)
Packit 1d0f99
{
Packit 1d0f99
  __set_errno (ENOSYS);
Packit 1d0f99
  return -1;
Packit 1d0f99
}
Packit 1d0f99
libc_hidden_def (__clock_gettime)
Packit Service 4e3b02
Packit Service 4e3b02
versioned_symbol (libc, __clock_gettime, clock_gettime, GLIBC_2_17);
Packit Service 4e3b02
/* clock_gettime moved to libc in version 2.17;
Packit Service 4e3b02
   old binaries may expect the symbol version it had in librt.  */
Packit Service 4e3b02
#if SHLIB_COMPAT (libc, GLIBC_2_2, GLIBC_2_17)
Packit Service 4e3b02
strong_alias (__clock_gettime, __clock_gettime_2);
Packit Service 4e3b02
compat_symbol (libc, __clock_gettime_2, clock_gettime, GLIBC_2_2);
Packit Service 4e3b02
#endif
Packit Service 4e3b02
Packit 1d0f99
stub_warning (clock_gettime)