Files
cros-kernel/include/types/status.h
2024-05-28 14:26:46 -05:00

28 lines
381 B
C

#ifndef KERNEL_STATUS_H
#define KERNEL_STATUS_H
#ifdef __cplusplus
extern "C"
{
#endif
enum error_t
{
ENONE = 0,
EUNKNOWN = -1,
ENOSYS = -2,
EEOF = -3,
ENOFILE = -4,
ENOMEM = -5,
EINVAL = -6,
EIO = -7,
EEXISTS = -8,
EPIPE = -9,
EFULL = -10
};
#ifdef __cplusplus
}
#endif
#endif