shsim/include/bsp.h: Remove rtems_bsp_delay()

This commit is contained in:
Joel Sherrill
2014-03-21 08:55:04 -05:00
parent 8c4821e48c
commit 851c44ef44
+2 -12
View File
@@ -45,22 +45,12 @@ extern "C" {
Thread clock_driver_sim_idle_body(uintptr_t);
#define BSP_IDLE_TASK_BODY clock_driver_sim_idle_body
/*
* Simple spin delay in microsecond units for device drivers.
* This is very dependent on the clock speed of the target.
*
* FIXME: Not applicable with gdb's simulator
* Kept for sourcecode compatibility with other sh-BSPs
*/
#define rtems_bsp_delay( microseconds ) CPU_delay(microseconds)
#define sh_delay( microseconds ) CPU_delay(microseconds)
/*
* Defined in the linker script 'linkcmds'
*/
extern void *CPU_Interrupt_stack_low ;
extern void *CPU_Interrupt_stack_high ;
extern void *CPU_Interrupt_stack_low;
extern void *CPU_Interrupt_stack_high;
#ifdef __cplusplus
}