Changeset 5a8bc44 in rtems
- Timestamp:
- 06/20/07 22:22:16 (15 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- 4ab3a29
- Parents:
- 8b8e1ee5
- Location:
- cpukit
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
cpukit/ChangeLog
r8b8e1ee5 r5a8bc44 1 2007-06-20 Joel Sherrill <joel.sherrill@OARcorp.com> 2 3 * sapi/include/confdefs.h: Do not instantiate initialization 4 thas/thread pointer tables for an API that is not configured. 5 1 6 2007-06-20 Joel Sherrill <joel.sherrill@OARcorp.com> 2 7 -
cpukit/sapi/include/confdefs.h
r8b8e1ee5 r5a8bc44 1220 1220 * then we need to install the code that runs that loop. 1221 1221 */ 1222 #ifdef CONFIGURE_INIT 1223 #ifdef CONFIGURE_POSIX_INIT_THREAD_TABLE 1224 void _POSIX_Threads_Initialize_user_threads_body(void); 1225 void (*_POSIX_Threads_Initialize_user_threads_p)(void) = 1226 _POSIX_Threads_Initialize_user_threads_body; 1227 #else 1228 void (*_POSIX_Threads_Initialize_user_threads_p)(void) = NULL; 1222 #ifdef RTEMS_POSIX_API 1223 #ifdef CONFIGURE_INIT 1224 #ifdef CONFIGURE_POSIX_INIT_THREAD_TABLE 1225 void _POSIX_Threads_Initialize_user_threads_body(void); 1226 void (*_POSIX_Threads_Initialize_user_threads_p)(void) = 1227 _POSIX_Threads_Initialize_user_threads_body; 1228 #else 1229 void (*_POSIX_Threads_Initialize_user_threads_p)(void) = NULL; 1230 #endif 1229 1231 #endif 1230 1232 #endif … … 1234 1236 * then we need to install the code that runs that loop. 1235 1237 */ 1236 #ifdef CONFIGURE_INIT 1237 #ifdef CONFIGURE_ITRON_INIT_TASK_TABLE 1238 void _ITRON_Task_Initialize_user_tasks_body(void); 1239 void (*_ITRON_Initialize_user_tasks_p)(void) = 1240 _ITRON_Task_Initialize_user_tasks_body; 1241 #else 1242 void (*_ITRON_Initialize_user_tasks_p)(void) = NULL; 1238 #ifdef RTEMS_ITRON_API 1239 #ifdef CONFIGURE_INIT 1240 #ifdef CONFIGURE_ITRON_INIT_TASK_TABLE 1241 void _ITRON_Task_Initialize_user_tasks_body(void); 1242 void (*_ITRON_Initialize_user_tasks_p)(void) = 1243 _ITRON_Task_Initialize_user_tasks_body; 1244 #else 1245 void (*_ITRON_Initialize_user_tasks_p)(void) = NULL; 1246 #endif 1243 1247 #endif 1244 1248 #endif
Note: See TracChangeset
for help on using the changeset viewer.