/* * include/linux/ktime.h * * ktime_t - nanosecond-resolution time format. * * Copyright(C) 2005, Thomas Gleixner <tglx@linutronix.de> * Copyright(C) 2005, Red Hat, Inc., Ingo Molnar * * data type definitions, declarations, prototypes and macros. * * Started by: Thomas Gleixner and Ingo Molnar * * Credits: * * Roman Zippel provided the ideas and primary code snippets of * the ktime_t union and further simplifications of the original * code. * * For licencing details see kernel-base/COPYING
*/ #ifndef _LINUX_KTIME_H #define _LINUX_KTIME_H
/** * ktime_set - Set a ktime_t variable from a seconds/nanoseconds value * @secs: seconds to set * @nsecs: nanoseconds to set * * Return: The ktime_t representation of the value.
*/ staticinline ktime_t ktime_set(const s64 secs, constunsignedlong nsecs)
{ if (unlikely(secs >= KTIME_SEC_MAX)) return KTIME_MAX;
return secs * NSEC_PER_SEC + (s64)nsecs;
}
/* Subtract two ktime_t variables. rem = lhs -rhs: */ #define ktime_sub(lhs, rhs) ((lhs) - (rhs))
/* Add two ktime_t variables. res = lhs + rhs: */ #define ktime_add(lhs, rhs) ((lhs) + (rhs))
/* * Same as ktime_add(), but avoids undefined behaviour on overflow; however, * this means that you must check the result for overflow yourself.
*/ #define ktime_add_unsafe(lhs, rhs) ((u64) (lhs) + (rhs))
/* * Add a ktime_t variable and a scalar nanosecond value. * res = kt + nsval:
*/ #define ktime_add_ns(kt, nsval) ((kt) + (nsval))
/* * Subtract a scalar nanosecod from a ktime_t variable * res = kt - nsval:
*/ #define ktime_sub_ns(kt, nsval) ((kt) - (nsval))
/* convert a timespec64 to ktime_t format: */ staticinline ktime_t timespec64_to_ktime(struct timespec64 ts)
{ return ktime_set(ts.tv_sec, ts.tv_nsec);
}
/* Map the ktime_t to timespec conversion to ns_to_timespec function */ #define ktime_to_timespec64(kt) ns_to_timespec64((kt))
/** * ktime_to_timespec64_cond - convert a ktime_t variable to timespec64 * format only if the variable contains data * @kt: the ktime_t variable to convert * @ts: the timespec variable to store the result in * * Return: %true if there was a successful conversion, %false if kt was 0.
*/ staticinline __must_check bool ktime_to_timespec64_cond(const ktime_t kt, struct timespec64 *ts)
{ if (kt) {
*ts = ktime_to_timespec64(kt); returntrue;
} else { returnfalse;
}
}
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.