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