source: rtems/cpukit/rtems/src/status.c @ faa2f8c4

4.115
Last change on this file since faa2f8c4 was faa2f8c4, checked in by Sebastian Huber <sebastian.huber@…>, on 07/23/13 at 08:54:37

rtems: Create status implementation header

Move implementation specific parts of status.h and status.inl into new
header file statusimpl.h. The status.h contains now only the
application visible API.

  • Property mode set to 100644
File size: 881 bytes
Line 
1/**
2 *  @file
3 *
4 *  @brief Status Object Name Errors to Status Array
5 *  @ingroup ClassicStatus
6 */
7
8/*  COPYRIGHT (c) 1989-2008.
9 *  On-Line Applications Research Corporation (OAR).
10 *
11 *  The license and distribution terms for this file may be
12 *  found in the file LICENSE in this distribution or at
13 *  http://www.rtems.com/license/LICENSE.
14 */
15
16#include <rtems/rtems/statusimpl.h>
17
18const rtems_status_code _Status_Object_name_errors_to_status[] = {
19  /** This maps OBJECTS_SUCCESSFUL to RTEMS_SUCCESSFUL. */
20  RTEMS_SUCCESSFUL,
21  /** This maps OBJECTS_INVALID_NAME to RTEMS_INVALID_NAME. */
22  RTEMS_INVALID_NAME,
23  /** This maps OBJECTS_INVALID_ADDRESS to RTEMS_INVALID_NAME. */
24  RTEMS_INVALID_ADDRESS,
25  /** This maps OBJECTS_INVALID_ID to RTEMS_INVALID_ADDRESS. */
26  RTEMS_INVALID_ID,
27  /** This maps OBJECTS_INVALID_NODE to RTEMS_INVALID_NODE. */
28  RTEMS_INVALID_NODE
29};
Note: See TracBrowser for help on using the repository browser.