Changeset 3a4ae6c in rtems for testsuites/samples/cdtest
- Timestamp:
- Sep 11, 1995, 7:35:39 PM (25 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- ced11f99
- Parents:
- 5072b07
- Location:
- testsuites/samples/cdtest
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
testsuites/samples/cdtest/init.c
r5072b07 r3a4ae6c 22 22 */ 23 23 24 #define TEST_INIT 24 25 #include "system.h" 25 #undef EXTERN26 #define EXTERN27 #include "conftbl.h"28 #include "gvar.h"29 26 #include <stdio.h> -
testsuites/samples/cdtest/system.h
r5072b07 r3a4ae6c 15 15 */ 16 16 17 #include <rtems.h> 18 #include <bsp.h> 19 #include <stdio.h> 17 #include <tmacros.h> 20 18 21 /* Miscellaneous */19 /* functions */ 22 20 23 #define EXTERN extern /* external definition */ 21 rtems_task main_task( 22 rtems_task_argument argument 23 ); 24 24 25 /* macros*/25 /* configuration information */ 26 26 27 /* structures */ 27 #define CONFIGURE_SPTEST 28 28 29 #include "gvar.h" 29 #define CONFIGURE_TEST_NEEDS_CONSOLE_DRIVER 30 #define CONFIGURE_TEST_NEEDS_CLOCK_DRIVER 30 31 32 #define CONFIGURE_INIT_TASK_ENTRY_POINT main_task 33 #define CONFIGURE_INIT_TASK_NAME rtems_build_name( 'C', 'T', 'O', 'R' ) 34 35 #include <confdefs.h> 36 37 /* global variables */ 38 39 TEST_EXTERN rtems_id Global_variable; /* example global variable */ 40 31 41 /* end of include file */
Note: See TracChangeset
for help on using the changeset viewer.