From 34bcd67e4811be85e11253e4176ec9fec5c3bbef Mon Sep 17 00:00:00 2001 From: Sander Vrijders Date: Wed, 22 Jun 2016 16:29:27 +0200 Subject: lib: Remove implementation specific errnos This removes any implementation specific error numbers. Only errors that are implementation independent should be returned. --- include/ouroboros/errno.h | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'include/ouroboros') 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 -#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 -- cgit v1.2.3