source: rtems/cpukit/itron/src/msgbuffertranslatereturncode.c @ 9d9a3dd

4.104.114.84.95
Last change on this file since 9d9a3dd was 9d9a3dd, checked in by Jennifer Averett <Jennifer.Averett@…>, on 11/17/99 at 16:47:58

+ Updated copyright information.

  • Property mode set to 100644
File size: 1.1 KB
Line 
1/*
2 *  ITRON Message Buffer 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.OARcorp.com/rtems/license.html.
10 *
11 *  $Id$
12 */
13
14#include <itron.h>
15
16#include <rtems/itron/msgbuffer.h>
17#include <rtems/itron/task.h>
18
19/*
20 *  _ITRON_Message_buffer_Translate_core_message_buffer_return_code
21 *
22 *  This routine translates a core message buffer object status
23 *  into the appropriate ITRON status code.
24 */
25
26ER _ITRON_Message_buffer_Translate_core_message_buffer_return_code(
27  CORE_message_queue_Status status
28)
29{
30  switch (status) {
31    case CORE_MESSAGE_QUEUE_STATUS_SUCCESSFUL:
32      return E_OK;
33    case CORE_MESSAGE_QUEUE_STATUS_TOO_MANY:
34      return E_TMOUT;
35    case CORE_MESSAGE_QUEUE_STATUS_INVALID_SIZE:
36      return E_PAR;
37    case CORE_MESSAGE_QUEUE_STATUS_UNSATISFIED_NOWAIT:
38      return E_TMOUT;
39    case CORE_MESSAGE_QUEUE_STATUS_TIMEOUT:
40      return E_TMOUT;
41    default:
42      return E_ID;
43  }
44}
Note: See TracBrowser for help on using the repository browser.