Changes in uspace/lib/c/include/errno.h [da9f13f3:14670bf] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/include/errno.h
rda9f13f3 r14670bf 39 39 #include <fibril.h> 40 40 41 #define errno _errno 42 41 43 extern int _errno; 42 43 #define errno _errno44 44 45 45 #define EMFILE (-18) … … 56 56 #define EMLINK (-266) 57 57 58 /** Bad checksum. */ 59 #define EBADCHECKSUM (-300) 60 61 /** USB: stalled operation. */ 62 #define ESTALL (-301) 63 64 /** Empty resource (no data). */ 65 #define EEMPTY (-302) 66 58 67 /** An API function is called while another blocking function is in progress. */ 59 #define EINPROGRESS 68 #define EINPROGRESS (-10036) 60 69 61 70 /** The socket identifier is not valid. */ 62 #define ENOTSOCK 71 #define ENOTSOCK (-10038) 63 72 64 73 /** The destination address required. */ 65 #define EDESTADDRREQ 74 #define EDESTADDRREQ (-10039) 66 75 67 76 /** Protocol is not supported. */ 68 #define EPROTONOSUPPORT 77 #define EPROTONOSUPPORT (-10043) 69 78 70 79 /** Socket type is not supported. */ 71 #define ESOCKTNOSUPPORT 80 #define ESOCKTNOSUPPORT (-10044) 72 81 73 82 /** Protocol family is not supported. */ 74 #define EPFNOSUPPORT 83 #define EPFNOSUPPORT (-10046) 75 84 76 85 /** Address family is not supported. */ 77 #define EAFNOSUPPORT 86 #define EAFNOSUPPORT (-10047) 78 87 79 88 /** Address is already in use. */ 80 #define EADDRINUSE 89 #define EADDRINUSE (-10048) 81 90 82 91 /** The socket is not connected or bound. */ 83 #define ENOTCONN 92 #define ENOTCONN (-10057) 84 93 85 94 /** The requested operation was not performed. Try again later. */ 86 #define EAGAIN 95 #define EAGAIN (-11002) 87 96 88 /** No data. 89 */ 90 #define NO_DATA (-11004) 97 /** No data. */ 98 #define NO_DATA (-11004) 91 99 92 100 #endif
Note:
See TracChangeset
for help on using the changeset viewer.