mirror of
https://gitlab.com/sortix/sortix.git
synced 2023-02-13 20:55:38 -05:00
Added ENOSYS.
This commit is contained in:
parent
1824dd6867
commit
c5ddc6923a
2 changed files with 2 additions and 0 deletions
|
@ -22,5 +22,6 @@
|
|||
#define ESRCH 30
|
||||
#define ENOTTY 31
|
||||
#define ECHILD 32
|
||||
#define ENOSYS 33
|
||||
|
||||
#endif
|
||||
|
|
|
@ -70,6 +70,7 @@ namespace Maxsi
|
|||
case ESRCH: return (char*) "No such process";
|
||||
case ENOTTY: return (char*) "Not a tty";
|
||||
case ECHILD: return (char*) "No child processes";
|
||||
case ENOSYS: return (char*) "Function not implemented";
|
||||
default: return (char*) "Unknown error condition";
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue