Changeset a2cc7b7f in rtems
- Timestamp:
- 07/30/99 17:18:39 (24 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- aa9eb940
- Parents:
- 6805640e
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
c/src/lib/libbsp/shared/bootcard.c
r6805640e ra2cc7b7f 26 26 extern rtems_configuration_table BSP_Configuration; 27 27 extern rtems_cpu_table Cpu_table; 28 29 rtems_api_configuration_table BSP_RTEMS_Configuration; 30 31 #ifdef RTEMS_POSIX_API 32 posix_api_configuration_table BSP_POSIX_Configuration; 33 #endif 28 34 29 35 /* Initialize C++ global Ctor/Dtor and initializes exception handling. */ … … 66 72 */ 67 73 68 BSP_Configuration = Configuration; 74 BSP_Configuration = Configuration; 75 76 BSP_RTEMS_Configuration = *Configuration->rtems_api_configuration; 77 BSP_Configuration.RTEMS_api_configuration = &BSP_RTEMS_Configuration; 78 79 #ifdef RTEMS_POSIX_API 80 BSP_POSIX_Configuration = *Configuration->posix_api_configuration; 81 BSP_Configuration.POSIX_api_configuration = &BSP_POSIX_Configuration; 82 #endif 69 83 70 84 /*
Note: See TracChangeset
for help on using the changeset viewer.