diff options
Diffstat (limited to '')
-rw-r--r-- | include/vdso/ktime.h | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/include/vdso/ktime.h b/include/vdso/ktime.h new file mode 100644 index 000000000..a0fd07239 --- /dev/null +++ b/include/vdso/ktime.h @@ -0,0 +1,16 @@ +/* SPDX-License-Identifier: GPL-2.0 */ +#ifndef __VDSO_KTIME_H +#define __VDSO_KTIME_H + +#include <vdso/jiffies.h> + +/* + * The resolution of the clocks. The resolution value is returned in + * the clock_getres() system call to give application programmers an + * idea of the (in)accuracy of timers. Timer values are rounded up to + * this resolution values. + */ +#define LOW_RES_NSEC TICK_NSEC +#define KTIME_LOW_RES (LOW_RES_NSEC) + +#endif /* __VDSO_KTIME_H */ |