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

4.104.114.84.95
Last change on this file since c32fb8f was d8e681e, checked in by Ralf Corsepius <ralf.corsepius@…>, on 03/30/04 at 11:18:29

2004-03-30 Ralf Corsepius <ralf_corsepius@…>

  • mp02/task1.c, mp03/system.h, mp03/task1.c, mp04/task1.c, mp05/system.h, mp06/task1.c, mp07/task1.c, mp08/task1.c, mp09/recvmsg.c, mp09/sendmsg.c, mp09/task1.c, mp10/task1.c, mp11/init.c, mp12/init.c, mp13/task1.c, mp14/evtask1.c, mp14/evtmtask.c, mp14/init.c, mp14/msgtask1.c, mp14/pttask1.c, mp14/smtask1.c, mp14/system.h: Convert to using c99 fixed size types.
  • Property mode set to 100644
File size: 1.1 KB
Line 
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-1999.
11 *  On-Line Applications Research Corporation (OAR).
12 *
13 *  The license and distribution terms for this file may be
14 *  found in the file LICENSE in this distribution or at
15 *  http://www.rtems.com/license/LICENSE.
16 *
17 *  $Id$
18 */
19
20#include "system.h"
21
22void Receive_messages()
23{
24 rtems_status_code status;
25 uint32_t    index;
26 uint32_t    size;
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     &size,
35     RTEMS_DEFAULT_OPTIONS,
36     RTEMS_NO_TIMEOUT
37   );
38   directive_failed( status, "rtems_message_queue_receive" );
39   puts_nocr( "Received : ");
40   puts( receive_buffer );
41 }
42
43  puts( "Receiver delaying for a second" );
44  status = rtems_task_wake_after( TICKS_PER_SECOND );
45  directive_failed( status, "rtems_task_wake_after" );
46}
Note: See TracBrowser for help on using the repository browser.