summaryrefslogtreecommitdiffstats
path: root/src/include/errno.h
diff options
context:
space:
mode:
authorMichael Brown2006-05-19 20:53:12 +0200
committerMichael Brown2006-05-19 20:53:12 +0200
commit444b885a7dfaaf4132c440b75018b59990cbfcd5 (patch)
tree21d7fc26fc0f8956d6a1eb9c00ad030a7e76e510 /src/include/errno.h
parentExpert advice tells me that we *do* have to explicitly state the (diff)
downloadipxe-444b885a7dfaaf4132c440b75018b59990cbfcd5.tar.gz
ipxe-444b885a7dfaaf4132c440b75018b59990cbfcd5.tar.xz
ipxe-444b885a7dfaaf4132c440b75018b59990cbfcd5.zip
Add EOVERFLOW==ERANGE
Diffstat (limited to 'src/include/errno.h')
-rw-r--r--src/include/errno.h10
1 files changed, 6 insertions, 4 deletions
diff --git a/src/include/errno.h b/src/include/errno.h
index 32ffe99a..8c9f515e 100644
--- a/src/include/errno.h
+++ b/src/include/errno.h
@@ -160,11 +160,13 @@
#define ENOTSUP EOPNOTSUPP /**< Not supported */
#define ENOTTY 0xf0 /**< Inappropriate ioctl for device */
#define ENXIO ENODEV /**< No such device or address */
+#define EOVERFLOW 0xf1 /**< Result too large */
#define EPERM EACCES /**< Operation not permitted */
-#define EPROTO 0xf1 /**< Protocol error */
-#define EPROTONOSUPPORT 0xf2 /**< Protocol not supported */
-#define EPROTOTYPE 0xf3 /**< Protocol wrong type for socket */
-#define ETIMEDOUT 0xf4 /**< Connection timed out */
+#define EPROTO 0xf2 /**< Protocol error */
+#define EPROTONOSUPPORT 0xf3 /**< Protocol not supported */
+#define EPROTOTYPE 0xf4 /**< Protocol wrong type for socket */
+#define ERANGE EOVERFLOW /**< Result too large */
+#define ETIMEDOUT 0xf5 /**< Connection timed out */
#define EWOULDBLOCK EAGAIN /**< Resource temporarily unavailable */
/* Data structures and declarations */