feat: open(2), close(2), mkdir(2) and readdir(2) syscall
[lunaix-os.git] / lunaix-os / includes / lunaix / status.h
index db33da2d9a9697504e3fd51fbadb362c89017f5e..dd353feace660a13ec4e8cafc1269963a9170c92 100644 (file)
@@ -5,7 +5,17 @@
 #define LXHEAPFULL -(2)
 #define LXINVLDPTR -(2)
 #define LXOUTOFMEM -(3)
-#define LXINVLDPID -(4)
 #define LXSEGFAULT -(5)
+#define EINVAL -(6)
+
+#define EINTR -(7)
+
+#define EMFILE -8
+#define ENOENT -9
+#define ENAMETOOLONG -10
+#define ENOTDIR -11
+#define EEXIST -12
+#define EBADF -13
+#define ENOTSUP -14
 
 #endif /* __LUNAIX_CODE_H */