Update copyright dates with scripts/update-copyrights.
[glibc.git] / sysdeps / unix / sysv / linux / timespec_get.c
blobc1626952c1f621f012bac1b3ccb15e9c57470532
1 /* Copyright (C) 2011-2015 Free Software Foundation, Inc.
2 This file is part of the GNU C Library.
4 The GNU C Library is free software; you can redistribute it and/or
5 modify it under the terms of the GNU Lesser General Public
6 License as published by the Free Software Foundation; either
7 version 2.1 of the License.
9 The GNU C Library is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 Lesser General Public License for more details.
14 You should have received a copy of the GNU Lesser General Public
15 License along with the GNU C Library; if not, see
16 <http://www.gnu.org/licenses/>. */
18 #include <time.h>
19 #include <sysdep.h>
21 #ifndef HAVE_CLOCK_GETTIME_VSYSCALL
22 # undef INTERNAL_VSYSCALL
23 # define INTERNAL_VSYSCALL INTERNAL_SYSCALL
24 #else
25 # include <bits/libc-vdso.h>
26 #endif
28 #ifndef INTERNAL_GETTIME
29 # define INTERNAL_GETTIME(id, tp) \
30 INTERNAL_VSYSCALL (clock_gettime, err, 2, id, tp)
31 #endif
34 /* Set TS to calendar time based in time base BASE. */
35 int
36 timespec_get (ts, base)
37 struct timespec *ts;
38 int base;
40 switch (base)
42 int res;
43 INTERNAL_SYSCALL_DECL (err);
44 case TIME_UTC:
45 res = INTERNAL_GETTIME (CLOCK_REALTIME, ts);
46 if (INTERNAL_SYSCALL_ERROR_P (res, err))
47 return 0;
48 break;
50 default:
51 return 0;
54 return base;