From e9ba474a0db66435be8386876a5a2d75adcba274 Mon Sep 17 00:00:00 2001 From: Marin Ramesa Date: Fri, 29 Nov 2013 22:54:23 +0100 Subject: kern/time_stamp.c: remove multimax code * kern/time_stamp.c [multimax]: Remove code. --- kern/time_stamp.c | 15 --------------- 1 file changed, 15 deletions(-) (limited to 'kern') diff --git a/kern/time_stamp.c b/kern/time_stamp.c index 22885b1..9adfc14 100644 --- a/kern/time_stamp.c +++ b/kern/time_stamp.c @@ -32,28 +32,16 @@ /* * ts.c - kern_timestamp system call. */ -#ifdef multimax -#include -#endif /* multimax */ - - - kern_return_t kern_timestamp(tsp) struct tsval *tsp; { -#ifdef multimax - struct tsval temp; - temp.low_val = FRcounter; - temp.high_val = 0; -#else /* multimax */ /* temp.low_val = 0; temp.high_val = ts_tick_count; */ time_value_t temp; temp = time; -#endif /* multimax */ if (copyout((char *)&temp, (char *)tsp, @@ -68,8 +56,5 @@ struct tsval *tsp; void timestamp_init() { -#ifdef multimax -#else /* multimax */ ts_tick_count = 0; -#endif /* multimax */ } -- cgit v1.2.3