Subversion Repositories HelenOS

Rev

Rev 3403 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 3403 Rev 4346
Line 46... Line 46...
46
#define EPERM       -6  /* Permission denied */
46
#define EPERM       -6  /* Permission denied */
47
#define EHANGUP     -7  /* Answerbox closed connection, call
47
#define EHANGUP     -7  /* Answerbox closed connection, call
48
                 * sys_ipc_hangup() to close the connection.
48
                 * sys_ipc_hangup() to close the connection.
49
                 * Used by answerbox to close the connection.
49
                 * Used by answerbox to close the connection.
50
                 */
50
                 */
-
 
51
#define EPARTY      -8  /* The other party encountered an error when
-
 
52
                 * receiving the call.
-
 
53
                 */
51
#define EEXISTS     -8  /* Entry already exists */
54
#define EEXISTS     -9  /* Entry already exists */
52
#define EBADMEM     -9  /* Bad memory pointer */
55
#define EBADMEM     -10 /* Bad memory pointer */
53
#define ENOTSUP     -10 /* Not supported */
56
#define ENOTSUP     -11 /* Not supported */
54
#define EADDRNOTAVAIL   -11 /* Address not available. */
57
#define EADDRNOTAVAIL   -12 /* Address not available. */
55
#define ETIMEOUT        -12     /* Timeout expired */
58
#define ETIMEOUT        -13     /* Timeout expired */
56
#define EINVAL          -13     /* Invalid value */
59
#define EINVAL          -14     /* Invalid value */
57
#define EBUSY           -14     /* Resource is busy */
60
#define EBUSY           -15     /* Resource is busy */
58
#define EOVERFLOW   -15 /* The result does not fit its size. */
61
#define EOVERFLOW   -16 /* The result does not fit its size. */
59
#define EINTR       -16 /* Operation was interrupted. */
62
#define EINTR       -17 /* Operation was interrupted. */
60
 
63
 
61
#endif
64
#endif
62
 
65
 
63
/** @}
66
/** @}
64
 */
67
 */