source: rtems/cpukit/itron/src/psnd_mbf.c @ ba3e987e

4.104.115
Last change on this file since ba3e987e was 7ded4e37, checked in by Ralf Corsepius <ralf.corsepius@…>, on 04/15/04 at 04:00:25

Remove unnecessary white spaces.

  • Property mode set to 100644
File size: 604 bytes
Line 
1/*
2 *  ITRON Message Buffer Manager
3 *
4 *  COPYRIGHT (c) 1989-1999.
5 *  On-Line Applications Research Corporation (OAR).
6 *
7 *  The license and distribution terms for this file may be
8 *  found in the file LICENSE in this distribution or at
9 *  http://www.rtems.com/license/LICENSE.
10 *
11 *  $Id$
12 */
13
14#if HAVE_CONFIG_H
15#include "config.h"
16#endif
17
18#include <rtems/itron.h>
19
20#include <rtems/itron/msgbuffer.h>
21#include <rtems/itron/task.h>
22
23/*
24 *  psnd_mbf - Poll and Send Message to MessageBuffer
25 */
26
27ER psnd_mbf(
28  ID  mbfid,
29  VP  msg,
30  INT msgsz
31)
32{
33  return tsnd_mbf( mbfid, msg, msgsz, TMO_POL );
34}
Note: See TracBrowser for help on using the repository browser.