Merge branch 'obsd-master'
[tmux.git] / compat / clock_gettime.c
blob8290e75ce4314317fafdf73cd0f3c23b5caeabd8
1 /*
2 * Copyright (c) 2021 Nicholas Marriott <nicholas.marriott@gmail.com>
4 * Permission to use, copy, modify, and distribute this software for any
5 * purpose with or without fee is hereby granted, provided that the above
6 * copyright notice and this permission notice appear in all copies.
8 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
11 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12 * WHATSOEVER RESULTING FROM LOSS OF MIND, USE, DATA OR PROFITS, WHETHER
13 * IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING
14 * OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
17 #include <sys/types.h>
18 #include <sys/time.h>
20 #include "compat.h"
22 #ifndef TIMEVAL_TO_TIMESPEC
23 #define TIMEVAL_TO_TIMESPEC(tv, ts) do { \
24 (ts)->tv_sec = (tv)->tv_sec; \
25 (ts)->tv_nsec = (tv)->tv_usec * 1000; \
26 } while (0)
27 #endif
29 int
30 clock_gettime(int clock, struct timespec *ts)
32 struct timeval tv;
34 gettimeofday(&tv, NULL);
35 TIMEVAL_TO_TIMESPEC(&tv, ts);
36 return 0;