aboutsummaryrefslogtreecommitdiff
path: root/include/linux/time.h
diff options
context:
space:
mode:
authorNishanth Aravamudan <nacc@us.ibm.com>2005-09-10 00:27:22 -0700
committerLinus Torvalds <torvalds@g5.osdl.org>2005-09-10 10:06:36 -0700
commit84f902c0903a98a315b45a4fba3d2ac0de388256 (patch)
treeb7c60677db9b34ce64777c02a55ae7ed49eb25e6 /include/linux/time.h
parent64ed93a268bc18fa6f72f61420d0e0022c5e38d1 (diff)
[PATCH] include: update jiffies/{m,u}secs conversion functions
Clarify the human-time units to jiffies conversion functions by using the constants in time.h. This makes many of the subsequent patches direct copies of the current code. Signed-off-by: Nishanth Aravamudan <nacc@us.ibm.com> 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.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/linux/time.h b/include/linux/time.h
index c10d4c21c18..36fb2ef13cf 100644
--- a/include/linux/time.h
+++ b/include/linux/time.h
@@ -28,6 +28,8 @@ struct timezone {
#ifdef __KERNEL__
/* Parameters used to convert the timespec values */
+#define MSEC_PER_SEC (1000L)
+
#ifndef USEC_PER_SEC
#define USEC_PER_SEC (1000000L)
#endif