Changeset 3a4ae6c in rtems for c/src/tests/samples/ticker
- Timestamp:
- 09/11/95 19:35:39 (28 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- ced11f99
- Parents:
- 5072b07
- Location:
- c/src/tests/samples/ticker
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
c/src/tests/samples/ticker/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 30 27 rtems_task Init( -
c/src/tests/samples/ticker/system.h
r5072b07 r3a4ae6c 17 17 #include <tmacros.h> 18 18 19 /* Miscellaneous */19 /* functions */ 20 20 21 #define EXTERN extern /* external definition */ 21 rtems_task Init( 22 rtems_task_argument argument 23 ); 22 24 23 /* macros */ 25 rtems_task Test_task( 26 rtems_task_argument argument 27 ); 24 28 25 /* structures*/29 /* configuration information */ 26 30 27 #include "gvar.h" 31 #define CONFIGURE_SPTEST 32 33 #define CONFIGURE_TEST_NEEDS_CONSOLE_DRIVER 34 #define CONFIGURE_TEST_NEEDS_CLOCK_DRIVER 35 36 #include <confdefs.h> 37 38 /* global variables */ 39 40 TEST_EXTERN rtems_id Task_id[ 4 ]; /* array of task ids */ 41 TEST_EXTERN rtems_name Task_name[ 4 ]; /* array of task names */ 28 42 29 43 /* end of include file */
Note: See TracChangeset
for help on using the changeset viewer.