X-Git-Url: https://git.ucc.asn.au/?a=blobdiff_plain;f=KernelLand%2FKernel%2Finclude%2Ferrno.h;h=f6ec953eaf40eb9b97455b2c56c78841b8967e68;hb=a5759d100ffe700c4f5d42ca21528592382d425c;hp=31f68a0cba625893c240e11cfdb04c2908e4c93b;hpb=d0b4559f2936f6d9f06be0f7c3c51527a480ec0d;p=tpg%2Facess2.git diff --git a/KernelLand/Kernel/include/errno.h b/KernelLand/Kernel/include/errno.h index 31f68a0c..f6ec953e 100644 --- a/KernelLand/Kernel/include/errno.h +++ b/KernelLand/Kernel/include/errno.h @@ -5,29 +5,6 @@ #ifndef _ERRNO_H #define _ERRNO_H -enum eErrorNums -{ - EOK, - - ENOSYS, // Invalid Instruction - EINVAL, // Invalid Paramater - ENOMEM, // No free memory - EACCES, // Not permitted - EBUSY, // Resource is busy - ENOTFOUND, // Item not found - EREADONLY, // Read only - ENOTIMPL, // Not implemented - ENOENT, // No entry? - EEXIST, // Already exists - ENFILE, // Too many open files - ENOTDIR, // Not a directory - EIO, // IO Error - EINTR, // Operation interrupted (signal) - - EALREADY, // Operation was a NOP - EINTERNAL, // Internal Error - - NUM_ERRS -}; +#include "../../../Usermode/Libraries/libc.so_src/include_exp/errno.enum.h" #endif