mirror of
https://gitlab.com/sortix/sortix.git
synced 2023-02-13 20:55:38 -05:00
Added ENOTEMPTY.
This commit is contained in:
parent
bdd8b2a77a
commit
f8bcf3117d
2 changed files with 2 additions and 0 deletions
|
@ -26,6 +26,7 @@
|
|||
#define ENOTSUP 34
|
||||
#define EBLOCKING 35
|
||||
#define EINTR 36
|
||||
#define ENOTEMPTY 37
|
||||
#define ELAKE 41
|
||||
|
||||
#endif
|
||||
|
|
|
@ -74,6 +74,7 @@ namespace Maxsi
|
|||
case ENOTSUP: return (char*) "Operation not supported";
|
||||
case EBLOCKING: return (char*) "Operation is blocking";
|
||||
case EINTR: return (char*) "Interrupted function call";
|
||||
case ENOTEMPTY: return (char*) "Directory not empty";
|
||||
case ELAKE: return (char*) "Sit by a lake";
|
||||
default: return (char*) "Unknown error condition";
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue