Changeset a2cc7b7f in rtems


Ignore:
Timestamp:
07/30/99 17:18:39 (24 years ago)
Author:
Joel Sherrill <joel.sherrill@…>
Branches:
4.10, 4.11, 4.8, 4.9, 5, master
Children:
aa9eb940
Parents:
6805640e
Message:

Corrected typo and added correct conditional compilation on RTEMS_POSIX_API.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • c/src/lib/libbsp/shared/bootcard.c

    r6805640e ra2cc7b7f  
    2626extern rtems_configuration_table  BSP_Configuration;
    2727extern rtems_cpu_table            Cpu_table;
     28
     29rtems_api_configuration_table BSP_RTEMS_Configuration;
     30
     31#ifdef RTEMS_POSIX_API
     32posix_api_configuration_table BSP_POSIX_Configuration;
     33#endif
    2834
    2935/* Initialize C++ global Ctor/Dtor and initializes exception handling. */
     
    6672   */
    6773
    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
    6983
    7084  /*
Note: See TracChangeset for help on using the changeset viewer.