Commit e071988c authored by William Lee Irwin III's avatar William Lee Irwin III Committed by Linus Torvalds

[PATCH] remove CT_TO_SECS()/CT_TO_USECS()

CT_TO_SECS() and CT_TO_USECS() are used nowhere in the tree.  This patch
removes them.
Signed-off-by: default avatarAndrew Morton <akpm@osdl.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
parent 16e05d61
...@@ -86,9 +86,6 @@ extern unsigned long avenrun[]; /* Load averages */ ...@@ -86,9 +86,6 @@ extern unsigned long avenrun[]; /* Load averages */
load += n*(FIXED_1-exp); \ load += n*(FIXED_1-exp); \
load >>= FSHIFT; load >>= FSHIFT;
#define CT_TO_SECS(x) ((x) / HZ)
#define CT_TO_USECS(x) (((x) % HZ) * 1000000/HZ)
extern unsigned long total_forks; extern unsigned long total_forks;
extern int nr_threads; extern int nr_threads;
extern int last_pid; extern int last_pid;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment