source: rtems/cpukit/itron/include/itronsys/status.h @ ed11bb26

4.104.114.84.95
Last change on this file since ed11bb26 was ed11bb26, checked in by Ralf Corsepius <ralf.corsepius@…>, on 11/21/04 at 06:05:23

Add doxygen preamble.

  • Property mode set to 100644
File size: 3.1 KB
Line 
1/**
2 * @file itronsys/status.h
3 */
4
5/*
6 *  COPYRIGHT (c) 1989-1999.
7 *  On-Line Applications Research Corporation (OAR).
8 *
9 *  The license and distribution terms for this file may be
10 *  found in the file LICENSE in this distribution or at
11 *  http://www.rtems.com/license/LICENSE.
12 *
13 *  $Id$
14 */
15
16#ifndef __ITRON_STATUS_h_
17#define __ITRON_STATUS_h_
18
19#ifdef __cplusplus
20extern "C" {
21#endif
22
23#define E_OK       0        /* Normal completion */
24#define E_SYS      (-5)     /* System error */
25#define E_NOMEM    (-10)    /* Insufficient memory */
26#define E_NOSPT    (-17)    /* Feature not supported */
27#define E_INOSPT   (-18)    /* Feature not supported by ITRON/FILE */
28                            /*   specification */
29#define E_RSFN     (-20)    /* Reserved function code number */
30#define E_RSATR    (-24)    /* Reserved attribute */
31#define E_PAR      (-33)    /* Parameter error */
32#define E_ID       (-35)    /* Invalid ID number */
33#define E_NOEXS    (-52)    /* Object does not exist */
34#define E_OBJ      (-63)    /* Invalid object state */
35#define E_MACV     (-65)    /* Memory access disabled or memory access */
36                            /*   violation */
37#define E_OACV     (-66)    /* Object access violation */
38#define E_CTX      (-69)    /* Context error */
39#define E_QOVR     (-73)    /* Queuing or nesting overflow */
40#define E_DLT      (-81)    /* Object being waited for was deleted */
41#define E_TMOUT    (-85)    /* Polling failure or timeout exceeded */
42#define E_RLWAI    (-86)    /* WAIT state was forcibly released */
43#define EN_NOND    (-113)   /* Target node does not exist or cannot be */
44                            /*   accessed */
45#define EN_OBJNO   (-114)   /* Specifies an object number which could not be */
46                            /*   accessed on the target node */
47#define EN_PROTO   (-115)   /* Protocol not supported on target node */
48#define EN_RSFN    (-116)   /* System call or function not supported on */
49                            /*   target node */
50#define EN_COMM    (-117)   /* No response from target node */
51#define EN_RLWAI   (-118)   /* Connection function response wait state was */
52                            /*   forcibly released */
53#define EN_PAR     (-119)   /* A value outside the range supported by the */
54                            /*   target node and/or transmission packet */
55                            /*   format was specified as a parameter */
56#define EN_RPAR    (-120)   /* A value outside the range supported by the */
57                            /*   issuing node and/or transmission packet */
58                            /*   format was returned as a return parameter */
59#define EN_CTXID   (-121)   /* An object on another node was specified to */
60                            /*   a system call issued from a task in dispatch */
61                            /*   disabled state or from a task-independent */
62                            /*   portion */
63#define EN_EXEC    (-122)   /* System call could not be executed due to */
64                            /*   insufficient resources on the target node */
65#define EN_NOSPT   (-123)   /* Connection function not supported */
66
67
68#ifdef __cplusplus
69}
70#endif
71
72#endif
73/* end of include file */
Note: See TracBrowser for help on using the repository browser.