summaryrefslogtreecommitdiffstats
path: root/cpukit/itron/src/snd_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 /cpukit/itron/src/snd_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 '')
-rw-r--r--cpukit/itron/src/snd_mbf.c27
1 files changed, 27 insertions, 0 deletions
diff --git a/cpukit/itron/src/snd_mbf.c b/cpukit/itron/src/snd_mbf.c
new file mode 100644
index 0000000000..bb8c23b077
--- /dev/null
+++ b/cpukit/itron/src/snd_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>
+
+/*
+ * snd_mbf - Send Message to MessageBuffer
+ */
+
+ER snd_mbf(
+ ID mbfid,
+ VP msg,
+ INT msgsz
+)
+{
+ return tsnd_mbf( mbfid, msg, msgsz, TMO_FEVR );
+}