]> git.ipfire.org Git - thirdparty/glibc.git/blame - sysdeps/posix/clock_getres.c
Prefer https to http for gnu.org and fsf.org URLs
[thirdparty/glibc.git] / sysdeps / posix / clock_getres.c
CommitLineData
2f4f3bd4 1/* clock_getres -- Get the resolution of a POSIX clockid_t.
04277e02 2 Copyright (C) 1999-2019 Free Software Foundation, Inc.
13fa3676
UD
3 This file is part of the GNU C Library.
4
5 The GNU C Library is free software; you can redistribute it and/or
41bdb6e2
AJ
6 modify it under the terms of the GNU Lesser General Public
7 License as published by the Free Software Foundation; either
8 version 2.1 of the License, or (at your option) any later version.
13fa3676
UD
9
10 The GNU C Library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
41bdb6e2 13 Lesser General Public License for more details.
13fa3676 14
41bdb6e2 15 You should have received a copy of the GNU Lesser General Public
59ba27a6 16 License along with the GNU C Library; if not, see
5a82c748 17 <https://www.gnu.org/licenses/>. */
13fa3676
UD
18
19#include <errno.h>
3b5c1b57 20#include <stdint.h>
8be918b7 21#include <time.h>
13fa3676 22#include <unistd.h>
3b5c1b57
UD
23#include <sys/param.h>
24#include <libc-internal.h>
7b5af2d8 25#include <shlib-compat.h>
13fa3676 26
2f4f3bd4
RM
27static inline int
28realtime_getres (struct timespec *res)
29{
dba2bdbe 30 long int clk_tck = __sysconf (_SC_CLK_TCK);
2f4f3bd4 31
a1ffb40e 32 if (__glibc_likely (clk_tck != -1))
2f4f3bd4
RM
33 {
34 /* This implementation assumes that the realtime clock has a
35 resolution higher than 1 second. This is the case for any
36 reasonable implementation. */
37 res->tv_sec = 0;
38 res->tv_nsec = 1000000000 / clk_tck;
39 return 0;
40 }
41
42 return -1;
43}
44
3b5c1b57 45
13fa3676
UD
46/* Get resolution of clock. */
47int
89fb6835 48__clock_getres (clockid_t clock_id, struct timespec *res)
13fa3676 49{
4a199526 50 int retval = -1;
13fa3676
UD
51
52 switch (clock_id)
53 {
ad0e8eb0 54 case CLOCK_REALTIME:
2f4f3bd4 55 retval = realtime_getres (res);
13fa3676
UD
56 break;
57
4165d44d 58 default:
38cc11da 59 __set_errno (EINVAL);
3b5c1b57 60 break;
13fa3676
UD
61 }
62
63 return retval;
64}
7b5af2d8
ZW
65
66versioned_symbol (libc, __clock_getres, clock_getres, GLIBC_2_17);
67/* clock_getres moved to libc in version 2.17;
68 old binaries may expect the symbol version it had in librt. */
69#if SHLIB_COMPAT (libc, GLIBC_2_2, GLIBC_2_17)
70strong_alias (__clock_getres, __clock_getres_2);
71compat_symbol (libc, __clock_getres_2, clock_getres, GLIBC_2_2);
72#endif