···109109}
110110111111/*!
112112+ * Convert double float milliseconds to nanoseconds, human comprehensible config
113113+ * inputs. Recommended to keep the absolute value of the input relitively small.
114114+ *
115115+ * @see timepoint_ns
116116+ * @ingroup aux_util
117117+ */
118118+static inline timepoint_ns
119119+time_ms_f_to_ns(double ms_f)
120120+{
121121+ return (timepoint_ns)(ms_f * (double)(U_TIME_1MS_IN_NS));
122122+}
123123+124124+/*!
112125 * Checks if two timepoints are with a certain range of each other.
113126 *
114127 * @see timepoint_ns