source: rtems/testsuites/mptests/mp09/recvmsg.c @ ac7d5ef0

4.104.114.84.95
Last change on this file since ac7d5ef0 was ac7d5ef0, checked in by Joel Sherrill <joel.sherrill@…>, on 05/11/95 at 17:39:37

Initial revision

  • Property mode set to 100644
File size: 1.2 KB
RevLine 
[ac7d5ef0]1/*  Receive_messages
2 *
3 *  This routine receives and prints three messages.
4 *  an error condition.
5 *
6 *  Input parameters:  NONE
7 *
8 *  Output parameters:  NONE
9 *
10 *  COPYRIGHT (c) 1989, 1990, 1991, 1992, 1993, 1994.
11 *  On-Line Applications Research Corporation (OAR).
12 *  All rights assigned to U.S. Government, 1994.
13 *
14 *  This material may be reproduced by or for the U.S. Government pursuant
15 *  to the copyright license under the clause at DFARS 252.227-7013.  This
16 *  notice must appear in all copies of this file and its derivatives.
17 *
18 *  $Id$
19 */
20
21#include "system.h"
22
23void Receive_messages()
24{
25 rtems_status_code status;
26 rtems_unsigned32  index;
27 char              receive_buffer[16];
28
29 for ( index=1 ; index <=3 ; index++ ) {
30   puts( "Receiving message ..." );
31   status = rtems_message_queue_receive(
32     Queue_id[ 1 ],
33     (long (*)[4])receive_buffer,
34     RTEMS_DEFAULT_OPTIONS,
35     RTEMS_NO_TIMEOUT
36   );
37   directive_failed( status, "rtems_message_queue_receive" );
38   puts_nocr( "Received : ");
39   puts( receive_buffer );
40 }
41
42  puts( "Receiver delaying for a second" );
43  status = rtems_task_wake_after( TICKS_PER_SECOND );
44  directive_failed( status, "rtems_task_wake_after" );
45}
Note: See TracBrowser for help on using the repository browser.