Rev 3022 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
Rev 3022 | Rev 4055 | ||
---|---|---|---|
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. */ |
- | 62 | #define EINTR -17 /* Operation was interrupted. */ |
|
59 | 63 | ||
60 | #endif |
64 | #endif |
61 | 65 | ||
62 | /** @} |
66 | /** @} |
63 | */ |
67 | */ |