Changeset e06da7e in mainline for kernel/generic/include/errno.h
- Timestamp:
- 2009-03-07T15:59:32Z (16 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 411b6a6
- Parents:
- b11ee88
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/include/errno.h
rb11ee88 re06da7e 49 49 * Used by answerbox to close the connection. 50 50 */ 51 #define EEXISTS -8 /* Entry already exists */ 52 #define EBADMEM -9 /* Bad memory pointer */ 53 #define ENOTSUP -10 /* Not supported */ 54 #define EADDRNOTAVAIL -11 /* Address not available. */ 55 #define ETIMEOUT -12 /* Timeout expired */ 56 #define EINVAL -13 /* Invalid value */ 57 #define EBUSY -14 /* Resource is busy */ 58 #define EOVERFLOW -15 /* The result does not fit its size. */ 59 #define EINTR -16 /* Operation was interrupted. */ 51 #define EPARTY -8 /* The other party encountered an error when 52 * receiving the call. 53 */ 54 #define EEXISTS -9 /* Entry already exists */ 55 #define EBADMEM -10 /* Bad memory pointer */ 56 #define ENOTSUP -11 /* Not supported */ 57 #define EADDRNOTAVAIL -12 /* Address not available. */ 58 #define ETIMEOUT -13 /* Timeout expired */ 59 #define EINVAL -14 /* Invalid value */ 60 #define EBUSY -15 /* Resource is busy */ 61 #define EOVERFLOW -16 /* The result does not fit its size. */ 62 #define EINTR -17 /* Operation was interrupted. */ 60 63 61 64 #endif
Note:
See TracChangeset
for help on using the changeset viewer.