Changeset 37f4c2d in rtems for c/src/lib/libbsp/unix/posix/startup
- Timestamp:
- 09/27/95 20:53:58 (28 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- 07058e7
- Parents:
- c701f197
- Location:
- c/src/lib/libbsp/unix/posix/startup
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
c/src/lib/libbsp/unix/posix/startup/bspclean.c
rc701f197 r37f4c2d 20 20 */ 21 21 22 #include <rtems.h>23 22 #include <bsp.h> 24 23 … … 31 30 void bsp_cleanup( void ) 32 31 { 33 34 35 36 32 /* 33 * Invoke any fatal error extension and "halt" 34 * By definition, rtems_fatal_error_occurred does not return. 35 */ 37 36 38 fflush(stdout);39 fflush(stderr);37 fflush(stdout); 38 fflush(stderr); 40 39 41 40 rtems_fatal_error_occurred(0); 42 41 } -
c/src/lib/libbsp/unix/posix/startup/bspstart.c
rc701f197 r37f4c2d 27 27 * $Id$ 28 28 */ 29 30 #include <rtems.h>31 29 32 30 #include <stdio.h> -
c/src/lib/libbsp/unix/posix/startup/exit.c
rc701f197 r37f4c2d 15 15 */ 16 16 17 #include <rtems.h>18 17 #include <bsp.h> 19 18 #include <clockdrv.h> -
c/src/lib/libbsp/unix/posix/startup/setvec.c
rc701f197 r37f4c2d 25 25 */ 26 26 27 #include <rtems.h>28 27 #include <bsp.h> 29 28
Note: See TracChangeset
for help on using the changeset viewer.