source: rtems/c/src/exec/itron/src/snd_mbf.c @ 9da0994

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

Split ITRON Message Buffer Manager into multiple files.

  • Property mode set to 100644
File size: 463 bytes
Line 
1/*
2 *  ITRON Message Buffer 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/msgbuffer.h>
14#include <rtems/itron/task.h>
15
16/*
17 *  snd_mbf - Send Message to MessageBuffer
18 */
19
20ER snd_mbf(
21  ID  mbfid,
22  VP  msg,
23  INT msgsz
24)
25{
26  return tsnd_mbf( mbfid, msg, msgsz, TMO_FEVR );
27}
Note: See TracBrowser for help on using the repository browser.