mirror of
https://gitlab.com/sortix/sortix.git
synced 2023-02-13 20:55:38 -05:00
Added ELAKE.
This commit is contained in:
parent
617c4333c6
commit
f9f59e9536
2 changed files with 2 additions and 0 deletions
|
@ -25,5 +25,6 @@
|
|||
#define ENOSYS 33
|
||||
#define ENOTSUP 34
|
||||
#define EBLOCKING 35
|
||||
#define ELAKE 41
|
||||
|
||||
#endif
|
||||
|
|
|
@ -73,6 +73,7 @@ namespace Maxsi
|
|||
case ENOSYS: return (char*) "Function not implemented";
|
||||
case ENOTSUP: return (char*) "Operation not supported";
|
||||
case EBLOCKING: return (char*) "Operation is blocking";
|
||||
case ELAKE: return (char*) "Sit by a lake";
|
||||
default: return (char*) "Unknown error condition";
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue