summaryrefslogtreecommitdiffstats
path: root/c/src/tests/tmtests/tm14/task1.c
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--c/src/tests/tmtests/tm14/task1.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/c/src/tests/tmtests/tm14/task1.c b/c/src/tests/tmtests/tm14/task1.c
index 3020fa66e9..b4b2e1eabf 100644
--- a/c/src/tests/tmtests/tm14/task1.c
+++ b/c/src/tests/tmtests/tm14/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:16:24 joel Exp
*/
#include "system.h"
@@ -74,6 +74,7 @@ rtems_task test_init(
status = rtems_message_queue_create(
rtems_build_name( 'M', 'Q', '1', ' ' ),
OPERATION_COUNT,
+ 16,
RTEMS_DEFAULT_ATTRIBUTES,
&Queue_id
);
@@ -115,7 +116,7 @@ rtems_task High_task(
Timer_initialize();
for ( index=1 ; index <= OPERATION_COUNT ; index++ )
- (void) rtems_message_queue_urgent( Queue_id, (long (*)[4]) Buffer );
+ (void) rtems_message_queue_urgent( Queue_id, (long (*)[4]) Buffer, 16 );
end_time = Read_timer();
put_time(
@@ -133,9 +134,12 @@ rtems_task Low_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
);