summaryrefslogtreecommitdiff
path: root/include/ouroboros/errno.h
diff options
context:
space:
mode:
authorSander Vrijders <sander.vrijders@intec.ugent.be>2016-06-22 16:29:27 +0200
committerSander Vrijders <sander.vrijders@intec.ugent.be>2016-06-22 16:29:27 +0200
commit34bcd67e4811be85e11253e4176ec9fec5c3bbef (patch)
tree97fa4a95c86661b36b38ccdd92552e9f7642919e /include/ouroboros/errno.h
parentfa0a0dbc88adcf9cff8bf35a253f020a49ff4084 (diff)
downloadouroboros-34bcd67e4811be85e11253e4176ec9fec5c3bbef.tar.gz
ouroboros-34bcd67e4811be85e11253e4176ec9fec5c3bbef.zip
lib: Remove implementation specific errnos
This removes any implementation specific error numbers. Only errors that are implementation independent should be returned.
Diffstat (limited to 'include/ouroboros/errno.h')
-rw-r--r--include/ouroboros/errno.h6
1 files changed, 2 insertions, 4 deletions
diff --git a/include/ouroboros/errno.h b/include/ouroboros/errno.h
index 49720548..62629134 100644
--- a/include/ouroboros/errno.h
+++ b/include/ouroboros/errno.h
@@ -25,9 +25,7 @@
#include <errno.h>
-#define ENOSHM 1000 /* Creation or access of shared memory failed */
-#define EIRM 1001 /* Could not talk to the IPC Resource Manager */
-#define ENOTALLOC 1002 /* Flow is not allocated */
-#define EIPCPTYPE 1003 /* Unknown IPCP type */
+#define ENOTALLOC 1000 /* Flow is not allocated */
+#define EIPCPTYPE 1001 /* Unknown IPCP type */
#endif