From 4b374f36e7172d59d6d8c252973c1ef65637ecbb Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Thu, 17 Aug 1995 19:36:43 +0000 Subject: maximum number of messages removed and include statement cleanup --- testsuites/tmtests/tm20/system.h | 12 +++++------- testsuites/tmtests/tm20/task1.c | 15 +++++++-------- 2 files changed, 12 insertions(+), 15 deletions(-) (limited to 'testsuites/tmtests/tm20') diff --git a/testsuites/tmtests/tm20/system.h b/testsuites/tmtests/tm20/system.h index 9133506e7f..16aff61444 100644 --- a/testsuites/tmtests/tm20/system.h +++ b/testsuites/tmtests/tm20/system.h @@ -10,14 +10,12 @@ * to the copyright license under the clause at DFARS 252.227-7013. This * notice must appear in all copies of this file and its derivatives. * - * $Id$ + * system.h,v 1.2 1995/05/31 17:17:56 joel Exp */ -#include +#include +#include -#include "coverhd.h" -#include "tmacros.h" - -#include "timesys.h" -#include "timegvar.h" +#include +#include diff --git a/testsuites/tmtests/tm20/task1.c b/testsuites/tmtests/tm20/task1.c index 6cfcb3d0c1..97c1a13e0b 100644 --- a/testsuites/tmtests/tm20/task1.c +++ b/testsuites/tmtests/tm20/task1.c @@ -8,7 +8,7 @@ * to the copyright license under the clause at DFARS 252.227-7013. This * notice must appear in all copies of this file and its derivatives. * - * $Id$ + * task1.c,v 1.2 1995/05/31 17:18:00 joel Exp */ #include "system.h" @@ -89,7 +89,6 @@ rtems_task Task_1( rtems_unsigned32 index; rtems_mode previous_mode; rtems_task_priority previous_priority; - rtems_unsigned32 return_value; rtems_status_code status; Partition_name = rtems_build_name( 'P', 'A', 'R', 'T' ); @@ -350,7 +349,7 @@ rtems_task Task_1( Timer_initialize(); for ( index=1 ; index <= OPERATION_COUNT ; index++ ) - (void) rtems_io_initialize( 0, 0, NULL, &return_value ); + (void) rtems_io_initialize( 0, 0, NULL ); end_time = Read_timer(); put_time( @@ -363,7 +362,7 @@ rtems_task Task_1( Timer_initialize(); for ( index=1 ; index <= OPERATION_COUNT ; index++ ) - (void) rtems_io_open( 0, 0, NULL, &return_value ); + (void) rtems_io_open( 0, 0, NULL ); end_time = Read_timer(); put_time( @@ -376,7 +375,7 @@ rtems_task Task_1( Timer_initialize(); for ( index=1 ; index <= OPERATION_COUNT ; index++ ) - (void) rtems_io_close( 0, 0, NULL, &return_value ); + (void) rtems_io_close( 0, 0, NULL ); end_time = Read_timer(); put_time( @@ -389,7 +388,7 @@ rtems_task Task_1( Timer_initialize(); for ( index=1 ; index <= OPERATION_COUNT ; index++ ) - (void) rtems_io_read( 0, 0, NULL, &return_value ); + (void) rtems_io_read( 0, 0, NULL ); end_time = Read_timer(); put_time( @@ -402,7 +401,7 @@ rtems_task Task_1( Timer_initialize(); for ( index=1 ; index <= OPERATION_COUNT ; index++ ) - (void) rtems_io_write( 0, 0, NULL, &return_value ); + (void) rtems_io_write( 0, 0, NULL ); end_time = Read_timer(); put_time( @@ -415,7 +414,7 @@ rtems_task Task_1( Timer_initialize(); for ( index=1 ; index <= OPERATION_COUNT ; index++ ) - (void) rtems_io_control( 0, 0, NULL, &return_value ); + (void) rtems_io_control( 0, 0, NULL ); end_time = Read_timer(); put_time( -- cgit v1.2.3