433fa02c43c2157582aa08638d88c1716570ade2
[dpdk.git] / lib / eal / windows / include / rte_os_shim.h
1 /* SPDX-License-Identifier: BSD-3-Clause */
2
3 #ifndef _RTE_OS_SHIM_
4 #define _RTE_OS_SHIM_
5
6 #include <time.h>
7
8 #include <rte_os.h>
9 #include <rte_windows.h>
10
11 /**
12  * @file
13  * @internal
14  * Provides semi-standard OS facilities by convenient names.
15  */
16
17 #ifndef PATH_MAX
18 #define PATH_MAX _MAX_PATH
19 #endif
20
21 #define strdup(str) _strdup(str)
22 #define strtok_r(str, delim, saveptr) strtok_s(str, delim, saveptr)
23 #define strncasecmp(s1, s2, count) _strnicmp(s1, s2, count)
24
25 #define open(path, flags, ...) _open(path, flags, ##__VA_ARGS__)
26 #define read(fd, buf, n) _read(fd, buf, n)
27 #define write(fd, buf, n) _write(fd, buf, n)
28 #define close(fd) _close(fd)
29 #define unlink(path) _unlink(path)
30
31 #define IPVERSION       4
32
33 #define IPPROTO_IPIP    4
34 #define IPPROTO_GRE     47
35 #ifdef RTE_TOOLCHAIN_GCC
36 #define IPPROTO_SCTP    132
37 #endif
38
39 #ifdef RTE_TOOLCHAIN_GCC
40
41 #define TIME_UTC 1
42
43 static inline int
44 rte_timespec_get(struct timespec *now, int base)
45 {
46         /* 100ns ticks from 1601-01-01 to 1970-01-01 */
47         static const uint64_t EPOCH = 116444736000000000ULL;
48         static const uint64_t TICKS_PER_SEC = 10000000;
49         static const uint64_t NS_PER_TICK = 100;
50
51         FILETIME ft;
52         uint64_t ticks;
53
54         if (base != TIME_UTC)
55                 return 0;
56
57         GetSystemTimePreciseAsFileTime(&ft);
58         ticks = ((uint64_t)ft.dwHighDateTime << 32) | ft.dwLowDateTime;
59         ticks -= EPOCH;
60         now->tv_sec = ticks / TICKS_PER_SEC;
61         now->tv_nsec = (ticks - now->tv_sec * TICKS_PER_SEC) * NS_PER_TICK;
62         return base;
63 }
64
65 #define timespec_get(ts, base) rte_timespec_get(ts, base)
66
67 #endif /* RTE_TOOLCHAIN_GCC */
68
69 #endif /* _RTE_OS_SHIM_ */