35 lines
423 B
C
35 lines
423 B
C
#ifndef TIANOLE_ERRNO_H
|
|
#define TIANOLE_ERRNO_H
|
|
|
|
/**
|
|
* EINVAL - Invalid argument.
|
|
*/
|
|
#define EINVAL 22
|
|
|
|
/**
|
|
* ENOENT - No such entry or mapping.
|
|
*/
|
|
#define ENOENT 2
|
|
|
|
/**
|
|
* ENOMEM - Out of memory.
|
|
*/
|
|
#define ENOMEM 12
|
|
|
|
/**
|
|
* EBUSY - Resource is already busy.
|
|
*/
|
|
#define EBUSY 16
|
|
|
|
/**
|
|
* EEXIST - Object already exists.
|
|
*/
|
|
#define EEXIST 17
|
|
|
|
/**
|
|
* ETIMEDOUT - Operation timed out.
|
|
*/
|
|
#define ETIMEDOUT 110
|
|
|
|
#endif
|