2009-06-10 Joel Sherrill <joel.sherrill@oarcorp.com>

* sapi/include/confdefs.h: Fix minor error when application has its own
	initialization task table.
This commit is contained in:
Joel Sherrill
2009-06-10 17:10:59 +00:00
parent 7cd9cd89f9
commit d15bae699d
2 changed files with 11 additions and 3 deletions
+5
View File
@@ -1,3 +1,8 @@
2009-06-10 Joel Sherrill <joel.sherrill@oarcorp.com>
* sapi/include/confdefs.h: Fix minor error when application has its own
initialization task table.
2009-06-08 Joel Sherrill <joel.sherrill@OARcorp.com>
* score/src/heapwalk.c: Verify addresses are aligned.
+6 -3
View File
@@ -1900,7 +1900,8 @@ rtems_fs_init_functions_t rtems_fs_init_helper =
* then we need to install the code that runs that loop.
*/
#ifdef CONFIGURE_INIT
#ifdef CONFIGURE_RTEMS_INIT_TASKS_TABLE
#if defined(CONFIGURE_RTEMS_INIT_TASKS_TABLE) || \
defined(CONFIGURE_HAS_OWN_INIT_TASK_TABLE)
void (_RTEMS_tasks_Initialize_user_tasks_body)(void);
void (*_RTEMS_tasks_Initialize_user_tasks_p)(void) =
_RTEMS_tasks_Initialize_user_tasks_body;
@@ -1915,7 +1916,8 @@ rtems_fs_init_functions_t rtems_fs_init_helper =
*/
#ifdef RTEMS_POSIX_API
#ifdef CONFIGURE_INIT
#ifdef CONFIGURE_POSIX_INIT_THREAD_TABLE
#if defined(CONFIGURE_POSIX_INIT_THREAD_TABLE) || \
defined(CONFIGURE_POSIX_HAS_OWN_INIT_THREAD_TABLE)
void _POSIX_Threads_Initialize_user_threads_body(void);
void (*_POSIX_Threads_Initialize_user_threads_p)(void) =
_POSIX_Threads_Initialize_user_threads_body;
@@ -1931,7 +1933,8 @@ rtems_fs_init_functions_t rtems_fs_init_helper =
*/
#ifdef RTEMS_ITRON_API
#ifdef CONFIGURE_INIT
#ifdef CONFIGURE_ITRON_INIT_TASK_TABLE
#if defined(CONFIGURE_ITRON_INIT_TASK_TABLE) || \
defined(CONFIGURE_ITRON_HAS_OWN_INIT_TASK_TABLE)
void _ITRON_Task_Initialize_user_tasks_body(void);
void (*_ITRON_Initialize_user_tasks_p)(void) =
_ITRON_Task_Initialize_user_tasks_body;