diff options
author | Thomas Gleixner <tglx@linutronix.de> | 2006-01-09 23:52:31 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-01-10 11:01:37 -0500 |
commit | 97fc79f97b1111c80010d34ee66312b88f531e41 (patch) | |
tree | a76e39521541dd3067e653f4463df5b651cf38af /arch/i386/Kconfig | |
parent | f8f46da3b4cbb03b43a102b1eb92b63419e10f90 (diff) |
[PATCH] hrtimer: introduce ktime_t time format
- introduce ktime_t: nanosecond-resolution time format.
- eliminate the plain s64 scalar type, and always use the union.
This simplifies the arithmetics. Idea from Roman Zippel.
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'arch/i386/Kconfig')
-rw-r--r-- | arch/i386/Kconfig | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/arch/i386/Kconfig b/arch/i386/Kconfig index 554ce3f344c9..815878ebd30f 100644 --- a/arch/i386/Kconfig +++ b/arch/i386/Kconfig | |||
@@ -1060,3 +1060,7 @@ config X86_TRAMPOLINE | |||
1060 | bool | 1060 | bool |
1061 | depends on X86_SMP || (X86_VOYAGER && SMP) | 1061 | depends on X86_SMP || (X86_VOYAGER && SMP) |
1062 | default y | 1062 | default y |
1063 | |||
1064 | config KTIME_SCALAR | ||
1065 | bool | ||
1066 | default y | ||