summaryrefslogtreecommitdiffstats
path: root/cpukit/itron/src/snd_mbx.c
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2010-06-17 15:36:00 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2010-06-17 15:36:00 +0000
commit331d1f5097d449a9335a6de8f2c7b9e8e3da7f81 (patch)
tree1817d80876d11acb8d44c3fc3d51b14a8c1109f7 /cpukit/itron/src/snd_mbx.c
parent2010-06-17 Ralf Corsépius <ralf.corsepius@rtems.org> (diff)
downloadrtems-331d1f5097d449a9335a6de8f2c7b9e8e3da7f81.tar.bz2
Remove (Abandoned).
Diffstat (limited to 'cpukit/itron/src/snd_mbx.c')
-rw-r--r--cpukit/itron/src/snd_mbx.c72
1 files changed, 0 insertions, 72 deletions
diff --git a/cpukit/itron/src/snd_mbx.c b/cpukit/itron/src/snd_mbx.c
deleted file mode 100644
index b66bd3d49e..0000000000
--- a/cpukit/itron/src/snd_mbx.c
+++ /dev/null
@@ -1,72 +0,0 @@
-/*
- * ITRON 3.0 Mailbox Manager
- *
- * COPYRIGHT (c) 1989-2007.
- * On-Line Applications Research Corporation (OAR).
- *
- * The license and distribution terms for this file may be
- * found in the file LICENSE in this distribution or at
- * http://www.rtems.com/license/LICENSE.
- *
- * $Id$
- */
-
-#if HAVE_CONFIG_H
-#include "config.h"
-#endif
-
-#include <rtems/itron.h>
-
-#include <rtems/itron/mbox.h>
-#include <rtems/itron/task.h>
-
-/*
- * snd_msg - Send Message to Mailbox
- */
-
-ER snd_msg(
- ID mbxid,
- T_MSG *pk_msg
-)
-{
- register ITRON_Mailbox_Control *the_mailbox;
- Objects_Locations location;
- uint32_t message_priority;
- void *message_contents;
- CORE_message_queue_Status msg_status;
-
- if ( !pk_msg )
- return E_PAR;
-
- the_mailbox = _ITRON_Mailbox_Get( mbxid, &location );
- switch ( location ) {
-#if defined(RTEMS_MULTIPROCESSING)
- case OBJECTS_REMOTE:
-#endif
- case OBJECTS_ERROR:
- return _ITRON_Mailbox_Clarify_get_id_error( mbxid );
-
- case OBJECTS_LOCAL:
- if ( the_mailbox->do_message_priority )
- message_priority = pk_msg->msgpri;
- else
- message_priority = CORE_MESSAGE_QUEUE_SEND_REQUEST;
-
- message_contents = pk_msg;
- msg_status = _CORE_message_queue_Submit(
- &the_mailbox->message_queue,
- &message_contents,
- sizeof(T_MSG *),
- the_mailbox->Object.id,
- NULL, /* multiprocessing not supported */
- message_priority,
- false, /* do not allow sender to block */
- 0 /* no timeout */
- );
- break;
- }
-
- _ITRON_return_errorno(
- _ITRON_Mailbox_Translate_core_message_queue_return_code( msg_status )
- );
-}