summaryrefslogtreecommitdiffstats
path: root/c/src/exec/itron/src/rcv_mbx.c
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>1999-11-17 15:24:11 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>1999-11-17 15:24:11 +0000
commit5e96e917578509149814e300d56d2a7d47b7f268 (patch)
tree9d5057fdaa5b220839a7c7d6c426e207878949fd /c/src/exec/itron/src/rcv_mbx.c
parentCorrected spacing. (diff)
downloadrtems-5e96e917578509149814e300d56d2a7d47b7f268.tar.bz2
Updated Mailbox Manager submitted and split into multiple files.
Diffstat (limited to 'c/src/exec/itron/src/rcv_mbx.c')
-rw-r--r--c/src/exec/itron/src/rcv_mbx.c26
1 files changed, 26 insertions, 0 deletions
diff --git a/c/src/exec/itron/src/rcv_mbx.c b/c/src/exec/itron/src/rcv_mbx.c
new file mode 100644
index 0000000000..411b4db6a5
--- /dev/null
+++ b/c/src/exec/itron/src/rcv_mbx.c
@@ -0,0 +1,26 @@
+/*
+ * ITRON 3.0 Mailbox 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/mbox.h>
+#include <rtems/itron/task.h>
+
+/*
+ * rcv_msg - Receive Message from Mailbox
+ */
+
+ER rcv_msg(
+ T_MSG **ppk_msg,
+ ID mbxid
+)
+{
+ return trcv_msg( ppk_msg, mbxid, TMO_FEVR );
+}