]> git.ipfire.org Git - thirdparty/glibc.git/blame - sysdeps/unix/clock_settime.c
Update copyright dates with scripts/update-copyrights.
[thirdparty/glibc.git] / sysdeps / unix / clock_settime.c
CommitLineData
f7a9f785 1/* Copyright (C) 1999-2016 Free Software Foundation, Inc.
13fa3676
UD
2 This file is part of the GNU C Library.
3
4 The GNU C Library is free software; you can redistribute it and/or
41bdb6e2
AJ
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, or (at your option) any later version.
13fa3676
UD
8
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
41bdb6e2 12 Lesser General Public License for more details.
13fa3676 13
41bdb6e2 14 You should have received a copy of the GNU Lesser General Public
59ba27a6
PE
15 License along with the GNU C Library; if not, see
16 <http://www.gnu.org/licenses/>. */
13fa3676
UD
17
18#include <errno.h>
8be918b7 19#include <time.h>
13fa3676 20#include <sys/time.h>
3b5c1b57 21#include <libc-internal.h>
5688da55 22#include <ldsodefs.h>
13fa3676
UD
23
24
22502ea2 25#if HP_TIMING_AVAIL && !defined HANDLED_CPUTIME
3b5c1b57
UD
26/* Clock frequency of the processor. We make it a 64-bit variable
27 because some jokers are already playing with processors with more
28 than 4GHz. */
29static hp_timing_t freq;
30
31
3b5c1b57 32/* This function is defined in the thread library. */
4165d44d 33extern void __pthread_clock_settime (clockid_t clock_id, hp_timing_t offset)
3b5c1b57 34 __attribute__ ((__weak__));
13fa3676 35
3b5c1b57 36
f99ed760
UD
37static int
38hp_timing_settime (clockid_t clock_id, const struct timespec *tp)
39{
40 hp_timing_t tsc;
41 hp_timing_t usertime;
42
43 /* First thing is to get the current time. */
44 HP_TIMING_NOW (tsc);
45
a1ffb40e 46 if (__glibc_unlikely (freq == 0))
f99ed760
UD
47 {
48 /* This can only happen if we haven't initialized the `freq'
49 variable yet. Do this now. We don't have to protect this
50 code against multiple execution since all of them should lead
51 to the same result. */
52 freq = __get_clockfreq ();
a1ffb40e 53 if (__glibc_unlikely (freq == 0))
f99ed760
UD
54 /* Something went wrong. */
55 return -1;
56 }
57
58 /* Convert the user-provided time into CPU ticks. */
59 usertime = tp->tv_sec * freq + (tp->tv_nsec * freq) / 1000000000ull;
60
61 /* Determine the offset and use it as the new base value. */
62 if (clock_id == CLOCK_PROCESS_CPUTIME_ID
63 || __pthread_clock_settime == NULL)
64 GL(dl_cpuclock_offset) = tsc - usertime;
65 else
66 __pthread_clock_settime (clock_id, tsc - usertime);
67
68 return 0;
69}
70#endif
71
72
13fa3676
UD
73/* Set CLOCK to value TP. */
74int
89fb6835 75__clock_settime (clockid_t clock_id, const struct timespec *tp)
13fa3676 76{
13fa3676
UD
77 int retval;
78
e79af11c
UD
79 /* Make sure the time cvalue is OK. */
80 if (tp->tv_nsec < 0 || tp->tv_nsec >= 1000000000)
81 {
82 __set_errno (EINVAL);
83 return -1;
84 }
85
13fa3676
UD
86 switch (clock_id)
87 {
ad0e8eb0
UD
88#define HANDLE_REALTIME \
89 do { \
b6e2f87a 90 struct timeval tv; \
ad0e8eb0
UD
91 TIMESPEC_TO_TIMEVAL (&tv, tp); \
92 \
93 retval = settimeofday (&tv, NULL); \
a46fde6e 94 } while (0)
ad0e8eb0 95
1dc74473
UD
96#ifdef SYSDEP_SETTIME
97 SYSDEP_SETTIME;
ad0e8eb0 98#endif
13fa3676 99
ad0e8eb0
UD
100#ifndef HANDLED_REALTIME
101 case CLOCK_REALTIME:
102 HANDLE_REALTIME;
13fa3676 103 break;
ad0e8eb0 104#endif
13fa3676 105
4165d44d 106 default:
f99ed760
UD
107#ifdef SYSDEP_SETTIME_CPU
108 SYSDEP_SETTIME_CPU;
4165d44d 109#endif
f99ed760
UD
110#ifndef HANDLED_CPUTIME
111# if HP_TIMING_AVAIL
112 if (CPUCLOCK_WHICH (clock_id) == CLOCK_PROCESS_CPUTIME_ID
113 || CPUCLOCK_WHICH (clock_id) == CLOCK_THREAD_CPUTIME_ID)
114 retval = hp_timing_settime (clock_id, tp);
115 else
116# endif
4165d44d
UD
117 {
118 __set_errno (EINVAL);
119 retval = -1;
4165d44d 120 }
a334319f 121#endif
f99ed760 122 break;
13fa3676
UD
123 }
124
125 return retval;
126}
89fb6835 127weak_alias (__clock_settime, clock_settime)