* Convert from timespec structure into nanosecond units. */
| 80 | * Convert from timespec structure into nanosecond units. |
| 81 | */ |
| 82 | static inline uint64_t |
| 83 | rte_timespec_to_ns(const struct timespec *ts) |
| 84 | { |
| 85 | return ((uint64_t) ts->tv_sec * NSEC_PER_SEC) + ts->tv_nsec; |
| 86 | } |
| 87 | |
| 88 | /** |
| 89 | * Convert from nanosecond units into timespec structure. |
no outgoing calls