mirror of
https://gitlab.com/sortix/sortix.git
synced 2023-02-13 20:55:38 -05:00
Added EINIT, "Not initialized".
This commit is contained in:
parent
e8d75643ea
commit
9905a2f2d6
2 changed files with 2 additions and 0 deletions
|
@ -35,6 +35,7 @@
|
|||
#define EAGAIN 43
|
||||
#define EEOF 44
|
||||
#define EBOUND 45
|
||||
#define EINIT 46
|
||||
|
||||
#define EOPNOTSUPP ENOTSUP
|
||||
|
||||
|
|
|
@ -83,6 +83,7 @@ namespace Maxsi
|
|||
case EAGAIN: return (char*) "Resource temporarily unavailable";
|
||||
case EEOF: return (char*) "End of file";
|
||||
case EBOUND: return (char*) "Out of bounds";
|
||||
case EINIT: return (char*) "Not initialized";
|
||||
default: return (char*) "Unknown error condition";
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue