mirror of
https://gitlab.com/sortix/sortix.git
synced 2023-02-13 20:55:38 -05:00
Added EBOUND.
This commit is contained in:
parent
95a088fec5
commit
5d59f0ed03
2 changed files with 2 additions and 0 deletions
|
@ -34,6 +34,7 @@
|
|||
#define EMFILE 42
|
||||
#define EAGAIN 43
|
||||
#define EEOF 44
|
||||
#define EBOUND 45
|
||||
|
||||
#define EOPNOTSUPP ENOTSUP
|
||||
|
||||
|
|
|
@ -82,6 +82,7 @@ namespace Maxsi
|
|||
case EMFILE: return (char*) "Too many open files";
|
||||
case EAGAIN: return (char*) "Resource temporarily unavailable";
|
||||
case EEOF: return (char*) "End of file";
|
||||
case EBOUND: return (char*) "Out of bounds";
|
||||
default: return (char*) "Unknown error condition";
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue