summaryrefslogtreecommitdiffstats
path: root/cpukit/rtems/src/statustext.c
blob: f701ebd3561aad9725c3ec6f5590af4f4252532c (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 ClassicStatus
 */

/*
 * Copyright (c) 2014 embedded brains GmbH.  All rights reserved.
 *
 *  embedded brains GmbH
 *  Dornierstr. 4
 *  82178 Puchheim
 *  Germany
 *  <rtems@embedded-brains.de>
 *
 * 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.
 */

#if HAVE_CONFIG_H
  #include "config.h"
#endif

#include <rtems.h>

static const char *const status_code_text[] = {
  "RTEMS_SUCCESSFUL",
  "RTEMS_TASK_EXITTED",
  "RTEMS_MP_NOT_CONFIGURED",
  "RTEMS_INVALID_NAME",
  "RTEMS_INVALID_ID",
  "RTEMS_TOO_MANY",
  "RTEMS_TIMEOUT",
  "RTEMS_OBJECT_WAS_DELETED",
  "RTEMS_INVALID_SIZE",
  "RTEMS_INVALID_ADDRESS",
  "RTEMS_INVALID_NUMBER",
  "RTEMS_NOT_DEFINED",
  "RTEMS_RESOURCE_IN_USE",
  "RTEMS_UNSATISFIED",
  "RTEMS_INCORRECT_STATE",
  "RTEMS_ALREADY_SUSPENDED",
  "RTEMS_ILLEGAL_ON_SELF",
  "RTEMS_ILLEGAL_ON_REMOTE_OBJECT",
  "RTEMS_CALLED_FROM_ISR",
  "RTEMS_INVALID_PRIORITY",
  "RTEMS_INVALID_CLOCK",
  "RTEMS_INVALID_NODE",
  "RTEMS_NOT_CONFIGURED",
  "RTEMS_NOT_OWNER_OF_RESOURCE",
  "RTEMS_NOT_IMPLEMENTED",
  "RTEMS_INTERNAL_ERROR",
  "RTEMS_NO_MEMORY",
  "RTEMS_IO_ERROR",
  "RTEMS_PROXY_BLOCKING"
};

const char *rtems_status_text( rtems_status_code code )
{
  size_t i = code;
  const char *text = "?";

  if ( i < RTEMS_ARRAY_SIZE( status_code_text ) ) {
    text = status_code_text [i];
  }

  return text;
}