source: rtems/cpukit/itron/src/snd_mbx.c @ 20f78a3

4.104.114.84.95
Last change on this file since 20f78a3 was 20f78a3, checked in by Ralf Corsepius <ralf.corsepius@…>, on 03/23/04 at 13:13:17

2004-03-23 Ralf Corsepius <ralf_corsepius@…>

  • itron/include/itronsys/mbox.h, itron/include/itronsys/types.h, itron/include/rtems/itron/eventflags.h, itron/include/rtems/itron/fmempool.h, itron/include/rtems/itron/mbox.h, itron/include/rtems/itron/msgbuffer.h, itron/include/rtems/itron/port.h, itron/include/rtems/itron/semaphore.h, itron/include/rtems/itron/task.h, itron/include/rtems/itron/vmempool.h, itron/inline/rtems/itron/semaphore.inl, itron/macros/rtems/itron/semaphore.inl, itron/src/eventflags.c, itron/src/fmempool.c, itron/src/itronsem.c, itron/src/mbox.c, itron/src/msgbuffer.c, itron/src/port.c, itron/src/snd_mbx.c, itron/src/task.c, itron/src/trcv_mbx.c, itron/src/vmempool.c: Convert to using c99 fixed size types.
  • Property mode set to 100644
File size: 1.6 KB
Line 
1/*
2 *  ITRON 3.0 Mailbox 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 <itron.h>
19
20#include <rtems/itron/mbox.h>
21#include <rtems/itron/task.h>
22
23/*
24 *  snd_msg - Send Message to Mailbox
25 */
26
27ER snd_msg(
28  ID     mbxid,
29  T_MSG *pk_msg
30)
31{
32  register ITRON_Mailbox_Control *the_mailbox;
33  Objects_Locations                location;
34  uint32_t                         message_priority;
35  void                            *message_contents;
36  CORE_message_queue_Status        msg_status;
37
38  if ( !pk_msg )
39    return E_PAR;
40
41  the_mailbox = _ITRON_Mailbox_Get( mbxid, &location );
42  switch ( location ) {
43    case OBJECTS_REMOTE:
44    case OBJECTS_ERROR:
45      return _ITRON_Mailbox_Clarify_get_id_error( mbxid );
46
47    case OBJECTS_LOCAL:
48      if ( the_mailbox->do_message_priority )
49        message_priority = pk_msg->msgpri;
50      else
51        message_priority = CORE_MESSAGE_QUEUE_SEND_REQUEST;
52
53      message_contents = pk_msg;
54      msg_status = _CORE_message_queue_Submit(
55        &the_mailbox->message_queue,
56        &message_contents,
57        sizeof(T_MSG *),
58        the_mailbox->Object.id,
59        NULL,          /* multiprocessing not supported */
60        message_priority,
61        FALSE,     /* do not allow sender to block */
62        0          /* no timeout */
63     );
64     break;
65  }
66
67  _ITRON_return_errorno(
68     _ITRON_Mailbox_Translate_core_message_queue_return_code( msg_status )
69  );
70}
Note: See TracBrowser for help on using the repository browser.