summaryrefslogtreecommitdiffstats
path: root/c/src/exec/itron/src/psnd_mbf.c
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>1999-11-15 17:15:58 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>1999-11-15 17:15:58 +0000
commit9da09940e4313465c77a2531f4a4f918d7ad99ef (patch)
tree0d580090a6772135d2123745c2a73409e62d933d /c/src/exec/itron/src/psnd_mbf.c
parentSplit ITRON semaphore manager into multiple files. (diff)
downloadrtems-9da09940e4313465c77a2531f4a4f918d7ad99ef.tar.bz2
Split ITRON Message Buffer Manager into multiple files.
Diffstat (limited to 'c/src/exec/itron/src/psnd_mbf.c')
-rw-r--r--c/src/exec/itron/src/psnd_mbf.c27
1 files changed, 27 insertions, 0 deletions
diff --git a/c/src/exec/itron/src/psnd_mbf.c b/c/src/exec/itron/src/psnd_mbf.c
new file mode 100644
index 0000000000..76673266e0
--- /dev/null
+++ b/c/src/exec/itron/src/psnd_mbf.c
@@ -0,0 +1,27 @@
+/*
+ * ITRON Message Buffer Manager
+ *
+ * The license and distribution terms for this file may be
+ * found in the file LICENSE in this distribution or at
+ * http://www.OARcorp.com/rtems/license.html.
+ *
+ * $Id$
+ */
+
+#include <itron.h>
+
+#include <rtems/itron/msgbuffer.h>
+#include <rtems/itron/task.h>
+
+/*
+ * psnd_mbf - Poll and Send Message to MessageBuffer
+ */
+
+ER psnd_mbf(
+ ID mbfid,
+ VP msg,
+ INT msgsz
+)
+{
+ return tsnd_mbf( mbfid, msg, msgsz, TMO_POL );
+}