aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/time.h
diff options
context:
space:
mode:
authorThomas Gleixner <tglx@linutronix.de>2006-01-09 23:52:25 -0500
committerLinus Torvalds <torvalds@g5.osdl.org>2006-01-10 11:01:35 -0500
commit0c4f6eeca98a805fd0c2536b55039383eb56d2ba (patch)
tree9f24c228b7035d348980072d9cd25fa1fbc08c73 /include/linux/time.h
parent199e7056895c8427dec63e1d9841ceafcfaaf314 (diff)
[PATCH] hrtimer: remove unused clock constants
remove unused CLOCK_ constants from time.h 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 'include/linux/time.h')
-rw-r--r--include/linux/time.h11
1 files changed, 4 insertions, 7 deletions
diff --git a/include/linux/time.h b/include/linux/time.h
index 773b83ddd8ef..ea64cde7c450 100644
--- a/include/linux/time.h
+++ b/include/linux/time.h
@@ -104,12 +104,10 @@ struct itimerval {
104/* 104/*
105 * The IDs of the various system clocks (for POSIX.1b interval timers). 105 * The IDs of the various system clocks (for POSIX.1b interval timers).
106 */ 106 */
107#define CLOCK_REALTIME 0 107#define CLOCK_REALTIME 0
108#define CLOCK_MONOTONIC 1 108#define CLOCK_MONOTONIC 1
109#define CLOCK_PROCESS_CPUTIME_ID 2 109#define CLOCK_PROCESS_CPUTIME_ID 2
110#define CLOCK_THREAD_CPUTIME_ID 3 110#define CLOCK_THREAD_CPUTIME_ID 3
111#define CLOCK_REALTIME_HR 4
112#define CLOCK_MONOTONIC_HR 5
113 111
114/* 112/*
115 * The IDs of various hardware clocks 113 * The IDs of various hardware clocks
@@ -118,9 +116,8 @@ struct itimerval {
118 116
119#define CLOCK_SGI_CYCLE 10 117#define CLOCK_SGI_CYCLE 10
120#define MAX_CLOCKS 16 118#define MAX_CLOCKS 16
121#define CLOCKS_MASK (CLOCK_REALTIME | CLOCK_MONOTONIC | \ 119#define CLOCKS_MASK (CLOCK_REALTIME | CLOCK_MONOTONIC)
122 CLOCK_REALTIME_HR | CLOCK_MONOTONIC_HR) 120#define CLOCKS_MONO (CLOCK_MONOTONIC)
123#define CLOCKS_MONO (CLOCK_MONOTONIC & CLOCK_MONOTONIC_HR)
124 121
125/* 122/*
126 * The various flags for setting POSIX.1b interval timers. 123 * The various flags for setting POSIX.1b interval timers.