summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/shared/main.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Numerous changes which in total greatly reduced the amount of sourceJoel Sherrill1998-04-151-2/+46
| | | | | | | | | | | | code in each BSP's bspstart.c. These changes were: + confdefs.h now knows libio's semaphore requirements + shared/main.c now copies Configuration to BSP_Configuration + shared/main.c fills in the Cpu_table with default values This removed the need for rtems_libio_config() and the constant BSP_LIBIO_MAX_FDS in every BSP. Plus now the maximum number of open files can now be set on the gcc command line.
* Removed recursive call to exitJoel Sherrill1998-04-141-2/+0
|
* Corrected definition of main and boot_card to be more ANSI compliant.Joel Sherrill1998-03-251-3/+5
|
* Switch to using a shared main() for all of the embedded BSPsJoel Sherrill1998-03-211-0/+62
based on the GNU tools. This usually involved correcting the type of bsp_start(), bsp_cleanup(), adjusting the start code to call the right start routine (the shared boot_card()), and then removing code from bsp_start() which was performed in the new boot_card()/main() path.