feat: open(2), close(2), mkdir(2) and readdir(2) syscall
[lunaix-os.git] / lunaix-os / includes / lunaix / status.h
1 #ifndef __LUNAIX_CODE_H
2 #define __LUNAIX_CODE_H
3
4 #define LXPROCFULL -(1)
5 #define LXHEAPFULL -(2)
6 #define LXINVLDPTR -(2)
7 #define LXOUTOFMEM -(3)
8 #define LXSEGFAULT -(5)
9 #define EINVAL -(6)
10
11 #define EINTR -(7)
12
13 #define EMFILE -8
14 #define ENOENT -9
15 #define ENAMETOOLONG -10
16 #define ENOTDIR -11
17 #define EEXIST -12
18 #define EBADF -13
19 #define ENOTSUP -14
20
21 #endif /* __LUNAIX_CODE_H */