source: rtems/cpukit/itron/src/prcv_mbx.c @ 5e96e917

4.104.114.84.95
Last change on this file since 5e96e917 was 5e96e917, checked in by Joel Sherrill <joel.sherrill@…>, on 11/17/99 at 15:24:11

Updated Mailbox Manager submitted and split into multiple files.

  • Property mode set to 100644
File size: 459 bytes
Line 
1/*
2 *  ITRON 3.0 Mailbox Manager
3 *
4 *  The license and distribution terms for this file may be
5 *  found in the file LICENSE in this distribution or at
6 *  http://www.OARcorp.com/rtems/license.html.
7 *
8 *  $Id$
9 */
10
11#include <itron.h>
12
13#include <rtems/itron/mbox.h>
14#include <rtems/itron/task.h>
15
16/*
17 *  prcv_msg - Poll and Receive Message from Mailbox
18 */
19
20ER prcv_msg(
21  T_MSG **ppk_msg,
22  ID      mbxid
23)
24{
25  return trcv_msg( ppk_msg, mbxid, TMO_POL );
26}
Note: See TracBrowser for help on using the repository browser.