Document MS-Windows file-name idiosyncrasies (Bug#19463)
[emacs.git] / lib / gettime.c
blob3786231d9382329c852739b6d5a375f747cb275b
1 /* gettime -- get the system clock
3 Copyright (C) 2002, 2004-2007, 2009-2015 Free Software Foundation,
4 Inc.
6 This program is free software: you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 3 of the License, or
9 (at your option) any later version.
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with this program. If not, see <http://www.gnu.org/licenses/>. */
19 /* Written by Paul Eggert. */
21 #include <config.h>
23 #include "timespec.h"
25 #include <sys/time.h>
27 /* Get the system time into *TS. */
29 void
30 gettime (struct timespec *ts)
32 #if HAVE_NANOTIME
33 nanotime (ts);
34 #else
36 # if defined CLOCK_REALTIME && HAVE_CLOCK_GETTIME
37 if (clock_gettime (CLOCK_REALTIME, ts) == 0)
38 return;
39 # endif
42 struct timeval tv;
43 gettimeofday (&tv, NULL);
44 ts->tv_sec = tv.tv_sec;
45 ts->tv_nsec = tv.tv_usec * 1000;
48 #endif