//----------------------------------------------------------------------------// // GNU GPL OS/K // // // // Desc: Values for error_t and errno // // // // // // Copyright © 2018-2019 The OS/K Team // // // // This file is part of OS/K. // // // // OS/K is free software: you can redistribute it and/or modify // // it under the terms of the GNU General Public License as published by // // the Free Software Foundation, either version 3 of the License, or // // any later version. // // // // OS/K is distributed in the hope that it will be useful, // // but WITHOUT ANY WARRANTY//without even the implied warranty of // // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // // GNU General Public License for more details. // // // // You should have received a copy of the GNU General Public License // // along with OS/K. If not, see . // //----------------------------------------------------------------------------// #ifndef _KALBASE_ERRNO_H #define _KALBASE_ERRNO_H //------------------------------------------// // Everything went fine #define EOK 0 // Operation not permitted #define EPERM 1 // No such file or directory #define ENOENT 2 // No such process #define ESRCH 3 // Syscall interrupted (e.g. by signal) #define EINTR 4 // I/0 error #define EIO 5 // No such device or address #define ENXIO 6 // Argument list too long #define E2BIG 7 // Not an executable format #define ENOEXEC 8 // Bad file #define EBADF 9 // Try again #define EAGAIN 11 // Out of memory #define ENOMEM 12 // Invalid argument #define EINVAL 22 // Functionality not implemented #define ENOSYS 38 // Address already in use #define EADDRINUSE 98 // Failure (unspecified reason) #define EFAILED 256 // Alignment error #define EALIGN 257 // End of file/stream #define EENDF 258 //------------------------------------------// #endif