Changeset 3a4ae6c in rtems for testsuites/mptests/mp13/system.h
- Timestamp:
- 09/11/95 19:35:39 (27 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- ced11f99
- Parents:
- 5072b07
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
testsuites/mptests/mp13/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_task1( 26 rtems_task_argument argument 27 ); 24 28 25 /* structures */ 29 rtems_task Test_task2( 30 rtems_task_argument argument 31 ); 26 32 27 #include "gvar.h" 33 /* configuration information */ 34 35 #define CONFIGURE_MPTEST 36 37 #define CONFIGURE_TEST_NEEDS_CONSOLE_DRIVER 38 #define CONFIGURE_TEST_NEEDS_CLOCK_DRIVER 39 40 #if ( NODE_NUMBER == 1 ) 41 #define CONFIGURE_MAXIMUM_SEMAPHORES 1 42 #define CONFIGURE_MAXIMUM_MESSAGE_QUEUES 1 43 #endif 44 45 #include <confdefs.h> 46 47 /* variables */ 48 49 TEST_EXTERN rtems_id Task_id[ 4 ]; /* array of task ids */ 50 TEST_EXTERN rtems_name Task_name[ 4 ]; /* array of task names */ 51 52 TEST_EXTERN rtems_id Queue_id[ 2 ]; /* array of message queue ids */ 53 TEST_EXTERN rtems_name Queue_name[ 2 ]; /* array of message queue names */ 54 55 TEST_EXTERN rtems_id Semaphore_id[ 2 ]; /* array of semaphore ids */ 56 TEST_EXTERN rtems_name Semaphore_name[ 2 ]; /* array of semaphore names */ 28 57 29 58 /* end of include file */
Note: See TracChangeset
for help on using the changeset viewer.