From bd834fe8d1b9b380391f68c89dcdf35bdcaf64c0 Mon Sep 17 00:00:00 2001 From: Rose Hudson Date: Mon, 5 Jun 2023 16:26:50 +0100 Subject: util: add timespec_to_nsec --- include/util/time.h | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'include/util') diff --git a/include/util/time.h b/include/util/time.h index 890fe55f..09a1f68e 100644 --- a/include/util/time.h +++ b/include/util/time.h @@ -13,6 +13,11 @@ int64_t get_current_time_msec(void); */ int64_t timespec_to_msec(const struct timespec *a); +/** + * Convert a timespec to nanoseconds. + */ +int64_t timespec_to_nsec(const struct timespec *a); + /** * Convert nanoseconds to a timespec. */ -- cgit v1.2.3