source: rtems/testsuites/mptests/mp09/sendmsg.c @ 33b304f

4.104.114.84.95
Last change on this file since 33b304f was 98e4ebf5, checked in by Joel Sherrill <joel.sherrill@…>, on 10/08/97 at 15:45:54

Fixed typo in the pointer to the license terms.

  • Property mode set to 100644
File size: 1.7 KB
Line 
1/*  Send_messages
2 *
3 *  This routine sends a series of three messages.
4 *  an error condition.
5 *
6 *  Input parameters:  NONE
7 *
8 *  Output parameters:  NONE
9 *
10 *  COPYRIGHT (c) 1989-1997.
11 *  On-Line Applications Research Corporation (OAR).
12 *  Copyright assigned to U.S. Government, 1994.
13 *
14 *  The license and distribution terms for this file may be
15 *  found in the file LICENSE in this distribution or at
16 *  http://www.OARcorp.com/rtems/license.html.
17 *
18 *  $Id$
19 */
20
21#include "system.h"
22
23void Send_messages()
24{
25  rtems_status_code status;
26  rtems_unsigned32  broadcast_count;
27
28  puts_nocr( "rtems_message_queue_send: " );
29  puts( buffer1 );
30
31  status = rtems_message_queue_send( Queue_id[ 1 ], (long (*)[4])buffer1, 16 );
32  directive_failed( status, "rtems_message_queue_send" );
33
34  puts( "Delaying for a second" );
35  status = rtems_task_wake_after( TICKS_PER_SECOND );
36  directive_failed( status, "rtems_task_wake_after" );
37
38  puts_nocr( "rtems_message_queue_urgent: " );
39  puts( buffer2 );
40  status = rtems_message_queue_urgent( Queue_id[ 1 ], (long (*)[4])buffer2, 16 );
41  directive_failed( status, "rtems_message_queue_urgent" );
42
43  puts( "Delaying for a second" );
44  status = rtems_task_wake_after( TICKS_PER_SECOND );
45  directive_failed( status, "rtems_task_wake_after" );
46
47  puts_nocr( "rtems_message_queue_broadcast: " );
48  puts( buffer3 );
49  status = rtems_message_queue_broadcast(
50    Queue_id[ 1 ],
51    (long (*)[4])buffer3,
52    16,
53    &broadcast_count
54  );
55  directive_failed( status, "rtems_message_queue_broadcast" );
56
57  puts( "Delaying for a second" );
58  status = rtems_task_wake_after( TICKS_PER_SECOND );
59  directive_failed( status, "rtems_task_wake_after" );
60}
Note: See TracBrowser for help on using the repository browser.