summaryrefslogtreecommitdiffstats
path: root/cpukit/rtems/src/statustoerrno.c
blob: 84ba739186b94e8f7b4d2b79591c2ec29b9a47d0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
/**
 * @file
 *
 * @ingroup RTEMSImplClassic
 *
 * @brief This source file contains the implementation of
 *   rtems_status_code_to_errno().
 */

/*  COPYRIGHT (c) 1989-2013.
 *  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.org/license/LICENSE.
 */

#include <rtems/rtems/statusimpl.h>
#include <errno.h>

static const int status_code_to_errno [RTEMS_STATUS_CODES_LAST + 1] = {
  [RTEMS_SUCCESSFUL]               = 0,
  [RTEMS_TASK_EXITTED]             = EIO,
  [RTEMS_MP_NOT_CONFIGURED]        = EIO,
  [RTEMS_INVALID_NAME]             = EINVAL,
  [RTEMS_INVALID_ID]               = EIO,
  [RTEMS_TOO_MANY]                 = EIO,
  [RTEMS_TIMEOUT]                  = ETIMEDOUT,
  [RTEMS_OBJECT_WAS_DELETED]       = EIO,
  [RTEMS_INVALID_SIZE]             = EIO,
  [RTEMS_INVALID_ADDRESS]          = EIO,
  [RTEMS_INVALID_NUMBER]           = EBADF,
  [RTEMS_NOT_DEFINED]              = EIO,
  [RTEMS_RESOURCE_IN_USE]          = EBUSY,
  [RTEMS_UNSATISFIED]              = ENODEV,
  [RTEMS_INCORRECT_STATE]          = EIO,
  [RTEMS_ALREADY_SUSPENDED]        = EIO,
  [RTEMS_ILLEGAL_ON_SELF]          = EIO,
  [RTEMS_ILLEGAL_ON_REMOTE_OBJECT] = EIO,
  [RTEMS_CALLED_FROM_ISR]          = EIO,
  [RTEMS_INVALID_PRIORITY]         = EIO,
  [RTEMS_INVALID_CLOCK]            = EINVAL,
  [RTEMS_INVALID_NODE]             = EINVAL,
  [RTEMS_NOT_CONFIGURED]           = ENOSYS,
  [RTEMS_NOT_OWNER_OF_RESOURCE]    = EPERM,
  [RTEMS_NOT_IMPLEMENTED]          = ENOSYS,
  [RTEMS_INTERNAL_ERROR]           = EIO,
  [RTEMS_NO_MEMORY]                = ENOMEM,
  [RTEMS_IO_ERROR]                 = EIO,
  [RTEMS_INTERRUPTED]              = EINTR,
  [RTEMS_PROXY_BLOCKING]           = EIO
};

int rtems_status_code_to_errno(rtems_status_code sc)
{
  if (sc == RTEMS_SUCCESSFUL) {
    return 0;
  } else {
    int eno = EINVAL;

    if ((unsigned) sc <= RTEMS_STATUS_CODES_LAST) {
      eno = status_code_to_errno [sc];
    }

    errno = eno;

    return -1;
  }
}