summaryrefslogtreecommitdiffstats
path: root/src/include
diff options
context:
space:
mode:
authorMichael Brown2005-05-18 16:41:53 +0200
committerMichael Brown2005-05-18 16:41:53 +0200
commit0eb4d9973cef880d45f7c2d82d452d86f3cb2ff0 (patch)
tree432bb970fab60b9fa479bb662e6a813db41b64f2 /src/include
parentdoxygen.cfg also references ARCH (diff)
downloadipxe-0eb4d9973cef880d45f7c2d82d452d86f3cb2ff0.tar.gz
ipxe-0eb4d9973cef880d45f7c2d82d452d86f3cb2ff0.tar.xz
ipxe-0eb4d9973cef880d45f7c2d82d452d86f3cb2ff0.zip
Add EBADIMG, EIMGRET, ETIMEDOUT and EINVAL
Diffstat (limited to 'src/include')
-rw-r--r--src/include/errno.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/include/errno.h b/src/include/errno.h
index 7b34ce97..a3c7fbbb 100644
--- a/src/include/errno.h
+++ b/src/include/errno.h
@@ -118,7 +118,12 @@
*
*/
-#define ENOMEM PXENV_STATUS_OUT_OF_RESOURCES
+#define ENOERR 0x00
+#define ENOMEM PXENV_STATUS_OUT_OF_RESOURCES
+#define EBADIMG 0xd0
+#define EIMGRET 0xd1
+#define ETIMEDOUT 0xd2
+#define EINVAL 0xd3
/* Data structures and declarations */