2007-12-05 Joel Sherrill <joel.sherrill@OARcorp.com>

* sapi/include/rtems/config.h: Commit temporary fix so
	interrupt_stack_size is accessible before RTEMS is initialized.
This commit is contained in:
Joel Sherrill
2007-12-05 14:30:54 +00:00
parent 464ba4d040
commit 1fd33fb41b
2 changed files with 11 additions and 0 deletions

View File

@@ -1,3 +1,8 @@
2007-12-05 Joel Sherrill <joel.sherrill@OARcorp.com>
* sapi/include/rtems/config.h: Commit temporary fix so
interrupt_stack_size is accessible before RTEMS is initialized.
2007-12-04 Joel Sherrill <joel.sherrill@OARcorp.com>
* sapi/include/confdefs.h, sapi/include/rtems/config.h,

View File

@@ -198,6 +198,12 @@ SAPI_EXTERN rtems_configuration_table *_Configuration_Table;
#define rtems_configuration_get_idle_task_stack_size() \
(_Configuration_Table->idle_task_stack_size)
/* XXX We need to get this from the generated table
* since BSPs need it before the pointer is set.
* Eventually all should be done this way.
*/
extern rtems_configuration_table Configuration;
#define rtems_configuration_get_interrupt_stack_size() \
(_Configuration_Table->interrupt_stack_size)