timer: Remove deprecated routines

Removes the following deprecated routines:
	nano_cycle_get_32()
	task_cycle_get_32()
	fiber_cycle_get_32()
	isr_cycle_get_32()

Those routines have all been replaced by sys_cycle_get_32().

Change-Id: I8709952633bb87c8963e88caffe1036fb9add527
Signed-off-by: Peter Mitsis <peter.mitsis@windriver.com>
This commit is contained in:
Peter Mitsis 2015-11-25 15:43:03 -05:00 committed by Anas Nashif
commit 53af19050d
7 changed files with 1 additions and 42 deletions

View file

@ -179,9 +179,6 @@ uint32_t sys_cycle_get_32(void)
return (clock_accumulated_count + count_get());
}
FUNC_ALIAS(sys_cycle_get_32, nano_cycle_get_32, uint32_t);
FUNC_ALIAS(sys_cycle_get_32, task_cycle_get_32, uint32_t);
#if defined(CONFIG_SYSTEM_CLOCK_DISABLE)
/**
*