Changeset 0eb58f1 in mainline for kernel/generic/include/errno.h
- Timestamp:
- 2007-06-20T20:53:19Z (18 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 6765c07
- Parents:
- 84947a4
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/include/errno.h
r84947a4 r0eb58f1 38 38 /* 1-255 are kernel error codes, 256-512 are user error codes */ 39 39 40 #define EOK 40 #define EOK 0 /* No error */ 41 41 #define ENOENT -1 /* No such entry */ 42 42 #define ENOMEM -2 /* Not enough memory */ … … 45 45 #define EFORWARD -5 /* Forward error */ 46 46 #define EPERM -6 /* Permission denied */ 47 #define EHANGUP -7 /* Answerbox closed connection, call sys_ipc_hangup 48 * to close the connection. Used by answerbox 49 * to close the connection. */ 47 #define EHANGUP -7 /* Answerbox closed connection, call 48 * sys_ipc_hangup() to close the connection. 49 * Used by answerbox to close the connection. 50 */ 50 51 #define EEXISTS -8 /* Entry already exists */ 51 52 #define EBADMEM -9 /* Bad memory pointer */
Note:
See TracChangeset
for help on using the changeset viewer.