1 /* settime -- set the system clock
3 Copyright (C) 2002, 2004-2007, 2009-2019 Free Software Foundation, Inc.
5 This program is free software: you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 3 of the License, or
8 (at your option) any later version.
10 This program 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
13 GNU General Public License for more details.
15 You should have received a copy of the GNU General Public License
16 along with this program. If not, see <https://www.gnu.org/licenses/>. */
18 /* Written by Paul Eggert. */
29 /* Set the system time. */
32 settime (struct timespec
const *ts
)
34 #if defined CLOCK_REALTIME && HAVE_CLOCK_SETTIME
36 int r
= clock_settime (CLOCK_REALTIME
, ts
);
37 if (r
== 0 || errno
== EPERM
)
46 tv
.tv_sec
= ts
->tv_sec
;
47 tv
.tv_usec
= ts
->tv_nsec
/ 1000;
48 return settimeofday (&tv
, 0);
51 /* This fails to compile on OSF1 V5.1, due to stime requiring
52 a 'long int*' and tv_sec is 'int'. But that system does provide
54 return stime (&ts
->tv_sec
);