Changes in uspace/lib/c/include/errno.h [8a637a4:d4d74dc] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/include/errno.h
r8a637a4 rd4d74dc 47 47 #define ENOTDIR (-258) 48 48 #define ENOSPC (-259) 49 #define EEXIST (-260) 49 50 #define ENOTEMPTY (-261) 50 51 #define EBADF (-262) 51 #define EDOM (-263) 52 #define ERANGE (-264) 53 #define EXDEV (-265) 54 #define EIO (-266) 55 #define EMLINK (-267) 56 #define ENXIO (-268) 52 #define ERANGE (-263) 53 #define EXDEV (-264) 54 #define EIO (-265) 55 #define EMLINK (-266) 56 #define ENXIO (-267) 57 57 58 58 /** Bad checksum. */ … … 68 68 #define ENAK (-303) 69 69 70 /** An API function is called while another blocking function is in progress. */ 71 #define EINPROGRESS (-10036) 72 73 /** The socket identifier is not valid. */ 74 #define ENOTSOCK (-10038) 75 76 /** The destination address required. */ 77 #define EDESTADDRREQ (-10039) 78 79 /** Protocol is not supported. */ 80 #define EPROTONOSUPPORT (-10043) 81 82 /** Socket type is not supported. */ 83 #define ESOCKTNOSUPPORT (-10044) 84 85 /** Protocol family is not supported. */ 86 #define EPFNOSUPPORT (-10046) 87 88 /** Address family is not supported. */ 89 #define EAFNOSUPPORT (-10047) 90 91 /** Address is already in use. */ 92 #define EADDRINUSE (-10048) 93 94 /** The socket is not connected or bound. */ 95 #define ENOTCONN (-10057) 96 97 #define ECONNREFUSED (-10058) 98 99 #define ECONNABORTED (-10059) 100 70 101 /** The requested operation was not performed. Try again later. */ 71 102 #define EAGAIN (-11002) 103 104 /** No data. */ 105 #define NO_DATA (-11004) 72 106 73 107 #endif
Note:
See TracChangeset
for help on using the changeset viewer.