diff options
author | Michael Brown <mcb30@etherboot.org> | 2006-12-20 03:34:27 +0000 |
---|---|---|
committer | Michael Brown <mcb30@etherboot.org> | 2006-12-20 03:34:27 +0000 |
commit | 04da3556f97999ee80635634ccc789471853be9a (patch) | |
tree | e12c48e983abbbfef2c7f37472be68321e552dee /src/include/errno.h | |
parent | 4f506328ad93a3bbe54028f432d7db6e7ee25faa (diff) | |
download | ipxe-04da3556f97999ee80635634ccc789471853be9a.tar.gz |
Differentiate between ENOSPC and ENOMEM
Diffstat (limited to 'src/include/errno.h')
-rw-r--r-- | src/include/errno.h | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/src/include/errno.h b/src/include/errno.h index d59880bc4..3273be7f2 100644 --- a/src/include/errno.h +++ b/src/include/errno.h @@ -151,23 +151,23 @@ #define ENOENT 0xe8 /**< No such file or directory */ #define ENOEXEC 0xe9 /**< Exec format error */ #define ENOMSG ENODATA /**< No message of the desired type */ -#define ENOSPC ENOMEM /**< No space left on device */ -#define ENOSR 0xea /**< No stream resources */ -#define ENOSTR 0xeb /**< Not a stream */ -#define ENOSYS 0xec /**< Function not implemented */ -#define ENOTCONN 0xed /**< Transport endpoint is not connected */ -#define ENOTSOCK 0xee /**< Socket operation on non-socket */ -#define EOPNOTSUPP 0xef /**< Operation not supported */ +#define ENOSPC 0xea /**< No space left on device */ +#define ENOSR 0xeb /**< No stream resources */ +#define ENOSTR 0xec /**< Not a stream */ +#define ENOSYS 0xed /**< Function not implemented */ +#define ENOTCONN 0xee /**< Transport endpoint is not connected */ +#define ENOTSOCK 0xef /**< Socket operation on non-socket */ +#define EOPNOTSUPP 0xf0 /**< Operation not supported */ #define ENOTSUP EOPNOTSUPP /**< Not supported */ -#define ENOTTY 0xf0 /**< Inappropriate ioctl for device */ +#define ENOTTY 0xf1 /**< Inappropriate ioctl for device */ #define ENXIO ENODEV /**< No such device or address */ -#define EOVERFLOW 0xf1 /**< Result too large */ +#define EOVERFLOW 0xf2 /**< Result too large */ #define EPERM EACCES /**< Operation not permitted */ -#define EPROTO 0xf2 /**< Protocol error */ -#define EPROTONOSUPPORT 0xf3 /**< Protocol not supported */ -#define EPROTOTYPE 0xf4 /**< Protocol wrong type for socket */ +#define EPROTO 0xf3 /**< Protocol error */ +#define EPROTONOSUPPORT 0xf4 /**< Protocol not supported */ +#define EPROTOTYPE 0xf5 /**< Protocol wrong type for socket */ #define ERANGE EOVERFLOW /**< Result too large */ -#define ETIMEDOUT 0xf5 /**< Connection timed out */ +#define ETIMEDOUT 0xf6 /**< Connection timed out */ #define EWOULDBLOCK EAGAIN /**< Resource temporarily unavailable */ /* Data structures and declarations */ |