forked from Imagelibrary/rtems
2007-12-04 Joel Sherrill <joel.sherrill@OARcorp.com>
* amba/amba.c, clock/ckinit.c, console/console.c, include/bsp.h, startup/bspstart.c, timer/timer.c: Move interrupt_stack_size field from CPU Table to Configuration Table. Eliminate CPU Table from all ports. Delete references to CPU Table in all forms.
This commit is contained in:
@@ -22,12 +22,13 @@
|
||||
|
||||
#include <bsp.h>
|
||||
|
||||
extern rtems_configuration_table Configuration;
|
||||
|
||||
#define LEON3_TIMER_INDEX \
|
||||
(Configuration.User_multiprocessing_table ? \
|
||||
(Configuration.User_multiprocessing_table)->maximum_nodes + \
|
||||
(Configuration.User_multiprocessing_table)->node - 1 : 1)
|
||||
#if defined(RTEMS_MULTIPROCESSING)
|
||||
#define LEON3_TIMER_INDEX \
|
||||
(rtems_configuration_get_user_multiprocessing_table() ? : \
|
||||
(rtems_configuration_get_user_multiprocessing_table()->node) - 1 : 1)
|
||||
#else
|
||||
#define LEON3_TIMER_INDEX 0
|
||||
#endif
|
||||
|
||||
rtems_boolean Timer_driver_Find_average_overhead;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user