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 --- c/src/tests/tmtests/tm10/system.h | 12 +++++------- c/src/tests/tmtests/tm10/task1.c | 11 ++++++++++- 2 files changed, 15 insertions(+), 8 deletions(-) (limited to 'c/src/tests/tmtests/tm10') diff --git a/c/src/tests/tmtests/tm10/system.h b/c/src/tests/tmtests/tm10/system.h index 9133506e7f..9c59593710 100644 --- a/c/src/tests/tmtests/tm10/system.h +++ b/c/src/tests/tmtests/tm10/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:15:37 joel Exp */ -#include +#include +#include -#include "coverhd.h" -#include "tmacros.h" - -#include "timesys.h" -#include "timegvar.h" +#include +#include diff --git a/c/src/tests/tmtests/tm10/task1.c b/c/src/tests/tmtests/tm10/task1.c index 788c2cd1f7..9ed9fc129e 100644 --- a/c/src/tests/tmtests/tm10/task1.c +++ b/c/src/tests/tmtests/tm10/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:15:39 joel Exp */ #include "system.h" @@ -51,6 +51,7 @@ rtems_task Init( void test_init() { rtems_unsigned32 index; + rtems_unsigned32 size; rtems_task_entry task_entry; rtems_status_code status; rtems_task_priority priority; @@ -82,6 +83,7 @@ void test_init() status = rtems_message_queue_create( 1, OPERATION_COUNT, + 16, RTEMS_DEFAULT_ATTRIBUTES, &Queue_id ); @@ -97,6 +99,7 @@ void test_init() (void) rtems_message_queue_receive( Queue_id, (long (*)[4]) Buffer, + &size, RTEMS_NO_WAIT, RTEMS_NO_TIMEOUT ); @@ -116,10 +119,13 @@ rtems_task High_task( rtems_task_argument argument ) { + rtems_unsigned32 size; + Timer_initialize(); (void) rtems_message_queue_receive( Queue_id, (long (*)[4]) Buffer, + &size, RTEMS_DEFAULT_OPTIONS, RTEMS_NO_TIMEOUT ); @@ -129,9 +135,12 @@ rtems_task Middle_tasks( rtems_task_argument argument ) { + rtems_unsigned32 size; + (void) rtems_message_queue_receive( Queue_id, (long (*)[4]) Buffer, + &size, RTEMS_DEFAULT_OPTIONS, RTEMS_NO_TIMEOUT ); -- cgit v1.2.3