blob: fa5675b85eb9f4607d5262c685ee29acf9bb4caf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
/* libhw/host_sigrt.h - Manage glibc realtime signals
*
* Copyright (C) 2024 Luke T. Shumaker <lukeshu@lukeshu.com>
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
#ifndef _LIBHW_HOST_SIGRT_H_
#define _LIBHW_HOST_SIGRT_H_
#include <time.h> /* for struct timespec */
#include <sys/time.h> /* for struct timeval */
#include <libhw/generic/alarmclock.h> /* for {X}S_PER_S */
int host_sigrt_alloc(void);
typedef struct timeval host_us_time_t;
typedef struct timespec host_ns_time_t;
static inline host_us_time_t ns_to_host_us_time(uint64_t time_ns) {
host_us_time_t ret;
ret.tv_sec = time_ns
/NS_PER_S;
ret.tv_usec = (time_ns - ((uint64_t)ret.tv_sec)*NS_PER_S)
/(NS_PER_S/US_PER_S);
return ret;
}
static inline host_ns_time_t ns_to_host_ns_time(uint64_t time_ns) {
host_ns_time_t ret;
ret.tv_sec = time_ns
/NS_PER_S;
ret.tv_nsec = time_ns - ((uint64_t)ret.tv_sec)*NS_PER_S;
return ret;
}
static inline uint64_t ns_from_host_us_time(host_us_time_t host_time) {
return (((uint64_t)ts.tv_sec) * NS_PER_S) +
((uint64_t)ts.tv_nsec * (NS_PER_S/US_PER_S));
}
static inline uint64_t ns_from_host_ns_time(host_ns_time_t host_time) {
return (((uint64_t)ts.tv_sec) * NS_PER_S) +
((uint64_t)ts.tv_nsec);
}
#endif /* _LIBHW_HOST_SIGRT_H_ */
|