Changeset 4b374f36 in rtems for testsuites/tmtests/tm14
- Timestamp:
- 08/17/95 19:36:43 (27 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- 3b438fa
- Parents:
- 556fb911
- Location:
- testsuites/tmtests/tm14
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
testsuites/tmtests/tm14/system.h
r556fb911 r4b374f36 11 11 * notice must appear in all copies of this file and its derivatives. 12 12 * 13 * $Id$13 * system.h,v 1.2 1995/05/31 17:16:22 joel Exp 14 14 */ 15 15 16 16 17 #include <rtems.h> 17 #include <coverhd.h> 18 #include <tmacros.h> 18 19 19 #include "coverhd.h" 20 #include "tmacros.h" 21 22 #include "timesys.h" 23 #include "timegvar.h" 20 #include <timesys.h> 21 #include <timegvar.h> -
testsuites/tmtests/tm14/task1.c
r556fb911 r4b374f36 9 9 * notice must appear in all copies of this file and its derivatives. 10 10 * 11 * $Id$11 * task1.c,v 1.2 1995/05/31 17:16:24 joel Exp 12 12 */ 13 13 … … 75 75 rtems_build_name( 'M', 'Q', '1', ' ' ), 76 76 OPERATION_COUNT, 77 16, 77 78 RTEMS_DEFAULT_ATTRIBUTES, 78 79 &Queue_id … … 116 117 Timer_initialize(); 117 118 for ( index=1 ; index <= OPERATION_COUNT ; index++ ) 118 (void) rtems_message_queue_urgent( Queue_id, (long (*)[4]) Buffer );119 (void) rtems_message_queue_urgent( Queue_id, (long (*)[4]) Buffer, 16 ); 119 120 end_time = Read_timer(); 120 121 … … 134 135 ) 135 136 { 137 rtems_unsigned32 size; 138 136 139 (void) rtems_message_queue_receive( 137 140 Queue_id, 138 141 (long (*)[4]) Buffer, 142 &size, 139 143 RTEMS_DEFAULT_OPTIONS, 140 144 RTEMS_NO_TIMEOUT
Note: See TracChangeset
for help on using the changeset viewer.